chiark / gitweb /
Handle flags on challenge timers correctly to prevent confusing the event
[tripe] / tun-unet.c
index cc1e40720dc3fa791365819762ca8e865588741f..80cf73065183a98b77928caf6371480a76bfdd2b 100644 (file)
@@ -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.5 2002/01/13 14:57:05 mdw Exp $
  *
  * Tunnel interface based on Linux Usernet
  *
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: tun-unet.c,v $
+ * Revision 1.5  2002/01/13 14:57:05  mdw
+ * Make @t_read@ be static, as it always should have been.
+ *
+ * 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 +51,7 @@
 #include "tripe.h"
 
 #include <sys/ioctl.h>
+#include <net/if.h>
 #include <unet.h>
 
 /*----- Main code ---------------------------------------------------------*/
@@ -64,7 +71,7 @@
  * Use:                Reads data from the tunnel.
  */
 
-void t_read(int fd, unsigned mode, void *v)
+static void t_read(int fd, unsigned mode, void *v)
 {
   tunnel *t = v;
   ssize_t n;
@@ -111,12 +118,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);