- Added subnet handling code
[tinc] / src / subnet.h
1 /*
2     subnet.h -- header for subnet.c
3     Copyright (C) 2000 Guus Sliepen <guus@sliepen.warande.net>,
4                   2000 Ivo Timmermans <itimmermans@bigfoot.com>
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     $Id: subnet.h,v 1.1.2.1 2000/10/01 03:21:49 guus Exp $
21 */
22
23 #ifndef __TINC_SUBNET_H__
24 #define __TINC_SUBNET_H__
25
26 enum{
27   SUBNET_MAC = 0,
28   SUBNET_IPv4,
29   SUBNET_IPv6,
30 };
31
32 typedef struct subnet_t {
33   struct conn_list_t *owner;            /* the owner of this subnet */
34   struct conn_list_t *uplink;           /* the uplink which we should send packets to for this subnet */
35
36   struct subnet_t *prev;                /* previous subnet_t for this owner */
37   struct subnet_t *next;                /* next subnet_t for this owner */
38
39   int type;                             /* subnet type (IPv4? IPv6? MAC? something even weirder?) */
40
41   /* Okay this is IPv4 specific because we are lazy and don't want to implement
42      other types just now. Type should always be SUBNET_IPv4 for now. */
43
44   ip_t netaddr;
45   ip_t netmask;
46 } subnet_t;  
47
48 #endif /* __TINC_SUBNET_H__ */