From a368bfbc511ff9a7a33fb32cfdb4f74801937c22 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Mon, 19 Feb 2001 19:10:45 +0000 Subject: [PATCH] Set unet devices to be point-to-point. Organization: Straylight/Edgeware From: mdw --- tun-unet.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/tun-unet.c b/tun-unet.c index cc1e4072..99359d7a 100644 --- a/tun-unet.c +++ b/tun-unet.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: tun-unet.c,v 1.3 2001/02/05 19:55:00 mdw Exp $ + * $Id: tun-unet.c,v 1.4 2001/02/19 19:10:45 mdw Exp $ * * Tunnel interface based on Linux Usernet * @@ -29,6 +29,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: tun-unet.c,v $ + * Revision 1.4 2001/02/19 19:10:45 mdw + * Set unet devices to be point-to-point. + * * Revision 1.3 2001/02/05 19:55:00 mdw * Guard against inappropriate compilation. * @@ -45,6 +48,7 @@ #include "tripe.h" #include +#include #include /*----- Main code ---------------------------------------------------------*/ @@ -111,12 +115,19 @@ void tun_init(void) int tun_create(tunnel *t, peer *p) { int fd; + int f; if ((fd = open("/dev/unet", O_RDWR)) < 0) { a_warn("open `/dev/unet' failed: %s", strerror(errno)); return (-1); } fdflags(fd, O_NONBLOCK, O_NONBLOCK, FD_CLOEXEC, FD_CLOEXEC); + if ((f = ioctl(fd, UNIOCGIFFLAGS)) < 0 || + ioctl(fd, UNIOCSIFFLAGS, f | IFF_POINTOPOINT)) { + a_warn("couldn't set point-to-point flag: %s", strerror(errno)); + close(fd); + return (-1); + } t->p = p; sel_initfile(&sel, &t->f, fd, SEL_READ, t_read, t); sel_addfile(&t->f); -- [mdw]