File: sit.c

package info (click to toggle)
net-tools 1.60-17
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,432 kB
  • ctags: 1,149
  • sloc: ansic: 13,450; makefile: 305; sh: 102
file content (47 lines) | stat: -rw-r--r-- 1,265 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
 * lib/sit.c  This file contains the SIT HW-type support.
 *
 * Version:    $Id: sit.c,v 1.5 2000/03/05 16:14:08 ecki Exp $
 *
 * Author:      Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
 *              Copyright 1993 MicroWalt Corporation
 *
 *              Based on slip.c, modified by Frank Strauss, Aug 1996
 *
 *              This program is free software; you can redistribute it
 *              and/or  modify it under  the terms of  the GNU General
 *              Public  License as  published  by  the  Free  Software
 *              Foundation;  either  version 2 of the License, or  (at
 *              your option) any later version.
 */
#include "config.h"

#if HAVE_HWSIT

#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <net/if_arp.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <string.h>
#include <termios.h>
#include <unistd.h>
#include "net-support.h"
#include "pathnames.h"

#ifndef ARPHRD_SIT
#warning "No definition of ARPHRD_SIT in <net/if_arp.h>, using private value 776"
#define ARPHRD_SIT 776
#endif

struct hwtype sit_hwtype =
{
    "sit", NULL, /*"IPv6-in-IPv4", */ ARPHRD_SIT, 0,
    NULL, NULL, NULL, 0
};

#endif				/* HAVE_HWSIT */