diff options
author | Kozlov Dmitry <dima@server> | 2011-08-23 18:02:22 +0400 |
---|---|---|
committer | Kozlov Dmitry <dima@server> | 2011-08-23 18:02:22 +0400 |
commit | 9bc3fa4216fb2ad043232584b5a5e134e64830ed (patch) | |
tree | 910b5a0809a272d8525ff1ed2c1265b7f7d53c3d /accel-pppd/ipdb.h | |
parent | e281cbf20eb2e8f36ef5037e138fdf3798f1897d (diff) | |
download | accel-ppp-9bc3fa4216fb2ad043232584b5a5e134e64830ed.tar.gz accel-ppp-9bc3fa4216fb2ad043232584b5a5e134e64830ed.zip |
ppp: ipv6: multiple prefixes, route option, rdnss option implementation
Diffstat (limited to 'accel-pppd/ipdb.h')
-rw-r--r-- | accel-pppd/ipdb.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/accel-pppd/ipdb.h b/accel-pppd/ipdb.h index 3a717a15..69d54792 100644 --- a/accel-pppd/ipdb.h +++ b/accel-pppd/ipdb.h @@ -13,13 +13,21 @@ struct ipv4db_item_t in_addr_t peer_addr; }; -struct ipv6db_item_t +struct ipv6db_addr_t { - struct ipdb_t *owner; + struct list_head entry; struct in6_addr addr; int prefix_len; }; +struct ipv6db_item_t +{ + struct ipdb_t *owner; + uint64_t intf_id; + struct list_head addr_list; + struct list_head route_list; +}; + struct ipdb_t { |