/* * 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, * 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 #include #include #include #include #include #include #include #include #include #include #include #include "net-support.h" #include "pathnames.h" #ifndef ARPHRD_SIT #warning "No definition of ARPHRD_SIT in , 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 */