From eee0a056794fbbcca144e3ccfad6e72d3cb5d89a Mon Sep 17 00:00:00 2001 From: Sapan Bhatia Date: Fri, 25 Jun 2010 03:17:10 +0000 Subject: [PATCH] Ported this code to the 2.6.27 kernel. --- fd_tuntap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } } -- 2.43.0