diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2014-11-05 13:18:21 +0300 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2014-11-05 13:18:21 +0300 |
commit | 17ec708d9ccdf57c068827dd4ca875f546ec98b0 (patch) | |
tree | c9a8d1e8dbaf0fc59a25d079380dbeae4d278dce /accel-pppd/ipdb.h | |
parent | 0170fc3761114ee94c17c88e000116f0c99ff638 (diff) | |
download | accel-ppp-17ec708d9ccdf57c068827dd4ca875f546ec98b0.tar.gz accel-ppp-17ec708d9ccdf57c068827dd4ca875f546ec98b0.zip |
ipv6: move ipv6_dp from dhcpv6 private data to ap_session
Diffstat (limited to 'accel-pppd/ipdb.h')
-rw-r--r-- | accel-pppd/ipdb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/accel-pppd/ipdb.h b/accel-pppd/ipdb.h index 69cb12f3..7f61b43b 100644 --- a/accel-pppd/ipdb.h +++ b/accel-pppd/ipdb.h @@ -57,8 +57,8 @@ void ipdb_put_ipv4(struct ap_session *ses, struct ipv4db_item_t *); struct ipv6db_item_t *ipdb_get_ipv6(struct ap_session *ses); void ipdb_put_ipv6(struct ap_session *ses, struct ipv6db_item_t *); -struct ipv6db_prefix_t __export *ipdb_get_ipv6_prefix(struct ap_session *ses); -void __export ipdb_put_ipv6_prefix(struct ap_session *ses, struct ipv6db_prefix_t *it); +struct ipv6db_prefix_t *ipdb_get_ipv6_prefix(struct ap_session *ses); +void ipdb_put_ipv6_prefix(struct ap_session *ses, struct ipv6db_prefix_t *it); void ipdb_register(struct ipdb_t *); |