From: Sapan Bhatia Date: Fri, 25 Jun 2010 03:17:10 +0000 (+0000) Subject: Ported this code to the 2.6.27 kernel. X-Git-Tag: vsys-scripts-0.95-18~2 X-Git-Url: http://git.onelab.eu/?p=vsys-scripts.git;a=commitdiff_plain;h=eee0a056794fbbcca144e3ccfad6e72d3cb5d89a Ported this code to the 2.6.27 kernel. --- diff --git a/fd_tuntap.c b/fd_tuntap.c index bf72a81..45e66be 100644 --- a/fd_tuntap.c +++ b/fd_tuntap.c @@ -105,10 +105,10 @@ int main(int argc, char *argv[]) } /* Open tun device */ - if( (tap_fd = open("/dev/stdtun", O_RDWR)) < 0 ) { + if( (tap_fd = open("/dev/net/tun", O_RDWR)) < 0 ) { system("modprobe tun"); - if( (tap_fd = open("/dev/stdtun", O_RDWR)) < 0 ) { - perror("ERROR: tun_alloc():open(/dev/stdtun)"); + if( (tap_fd = open("/dev/net/tun", O_RDWR)) < 0 ) { + perror("ERROR: tun_alloc():open(/dev/net/tun)"); exit(-1); } }