Fix signed comparison bug in lookup_subnet_ipv4().
[tinc] / src / subnet.h
index a572953..2659386 100644 (file)
@@ -1,7 +1,7 @@
 /*
     subnet.h -- header for subnet.c
-    Copyright (C) 2000 Guus Sliepen <guus@sliepen.warande.net>,
-                  2000 Ivo Timmermans <itimmermans@bigfoot.com>
+    Copyright (C) 2000,2001 Guus Sliepen <guus@sliepen.warande.net>,
+                  2000,2001 Ivo Timmermans <itimmermans@bigfoot.com>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -17,7 +17,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: subnet.h,v 1.1.2.8 2001/01/05 23:53:53 guus Exp $
+    $Id: subnet.h,v 1.1.2.10 2001/01/08 21:32:30 guus Exp $
 */
 
 #ifndef __TINC_SUBNET_H__
@@ -54,12 +54,6 @@ typedef struct subnet_t {
   struct connection_t *owner;          /* the owner of this subnet */
   struct connection_t *uplink;         /* the uplink which we should send packets to for this subnet */
 
-  struct subnet_t *prev;               /* previous subnet_t for this owner */
-  struct subnet_t *next;               /* next subnet_t for this owner */
-
-  struct subnet_t *global_prev;                /* previous subnet_t for this subnet type */
-  struct subnet_t *global_next;                /* next subnet_t for this subnet type */
-
   int type;                            /* subnet type (IPv4? IPv6? MAC? something even weirder?) */
 
   /* And now for the actual subnet: */