diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2011-08-20 10:03:12 +0400 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2011-08-20 10:05:00 +0400 |
commit | ef1d4c04584076dc77fc8df62c996feb1ac10c41 (patch) | |
tree | 5b27de8450435d72d13d7c9d3c764ba8df4460f8 /accel-pppd/ppp/ppp.h | |
parent | a04cc1eba9bdf614eea9d7858db4581fc22474d7 (diff) | |
download | accel-ppp-ef1d4c04584076dc77fc8df62c996feb1ac10c41.tar.gz accel-ppp-ef1d4c04584076dc77fc8df62c996feb1ac10c41.zip |
ppp: initial IPV6CP support
Diffstat (limited to 'accel-pppd/ppp/ppp.h')
-rw-r--r-- | accel-pppd/ppp/ppp.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/accel-pppd/ppp/ppp.h b/accel-pppd/ppp/ppp.h index 8556b2c2..e8141cc1 100644 --- a/accel-pppd/ppp/ppp.h +++ b/accel-pppd/ppp/ppp.h @@ -3,7 +3,6 @@ #include <sys/types.h> #include <time.h> -#include <netinet/in.h> #include <pthread.h> #include "triton.h" @@ -95,8 +94,8 @@ struct ppp_t time_t start_time; time_t stop_time; char *username; - in_addr_t ipaddr; - in_addr_t peer_ipaddr; + uint32_t ipaddr; + uint32_t peer_ipaddr; struct ppp_ctrl_t *ctrl; |