/* * Tunnel.c, Alan Cox 1995. * */ #include "config.h" #if HAVE_HWTUNNEL #include #include #include #include #include #include #include #include #include #include #include "net-support.h" #include "pathnames.h" extern struct hwtype ether_hwtype; static char *pr_tunnel(unsigned char *ptr) { return (""); } static char *pr_stunnel(struct sockaddr *sap) { return (""); } static int in_tunnel(char *bufp, struct sockaddr *sap) { return (-1); } struct hwtype tunnel_hwtype = { "tunnel", NULL, /*"IPIP Tunnel", */ ARPHRD_TUNNEL, 0, pr_tunnel, pr_stunnel, in_tunnel, NULL }; #endif /* HAVE_HWTUNNEL */