X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fsubnet.h;h=c055edae8c9c423b3ab89761f2a27640801c7440;hp=b0bc9113f9e568840264df36c6fda0402185caf1;hb=e3220cacb5bc79fc56167e61b7a342f88a33a479;hpb=d798b8b3d832f8c69769e08cfd64a4d8355faf0e diff --git a/src/subnet.h b/src/subnet.h index b0bc9113..c055edae 100644 --- a/src/subnet.h +++ b/src/subnet.h @@ -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.24 2003/07/30 21:52:41 guus Exp $ + $Id: subnet.h,v 1.1.2.26 2003/11/17 15:30:18 guus Exp $ */ #ifndef __TINC_SUBNET_H__ @@ -51,7 +51,6 @@ typedef struct subnet_ipv6_t { typedef struct subnet_t { struct node_t *owner; /* the owner of this subnet */ - struct node_t *uplink; /* the uplink which we should send packets to for this subnet */ subnet_type_t type; /* subnet type (IPv4? IPv6? MAC? something even weirder?) */ @@ -64,6 +63,7 @@ typedef struct subnet_t { } net; } subnet_t; +extern int subnet_compare(const struct subnet_t *, const struct subnet_t *); extern subnet_t *new_subnet(void) __attribute__ ((__malloc__)); extern void free_subnet(subnet_t *); extern void init_subnets(void);