diff options
author | Chia-chi Yeh <chiachi@android.com> | 2009-05-08 04:02:40 +0800 |
---|---|---|
committer | John Stultz <john.stultz@linaro.org> | 2016-02-16 13:51:17 -0800 |
commit | 224e3d846f972c5d3a48afff2c593bd944405a7c (patch) | |
tree | 993e15cb0d774de42df1c0a1db5f92372996645a /include/linux/if_pppox.h | |
parent | 6b6d5fbf9ae567aefb58099a30bbb6d25fa8925b (diff) |
net: add PPP on L2TP Access Concentrator (PPPoLAC) driver.
Change-Id: I3ae3ee7520951ae24269db0ef2898c6455cf6bcc
Signed-off-by: Chia-chi Yeh <chiachi@android.com>
ppolac: dont include px_proto define in if_pppolac.h
Change-Id: I55bc9cf91ea0e9e8f7bf5d6e241d188e1269343a
Signed-off-by: Dima Zavin <dima@android.com>
Diffstat (limited to 'include/linux/if_pppox.h')
-rw-r--r-- | include/linux/if_pppox.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/if_pppox.h b/include/linux/if_pppox.h index b49cf923becc..18205d2d8d44 100644 --- a/include/linux/if_pppox.h +++ b/include/linux/if_pppox.h @@ -43,6 +43,14 @@ struct pptp_opt { u32 seq_sent, seq_recv; int ppp_flags; }; + +struct pppolac_opt { + __u32 local; + __u32 remote; + __u16 sequence; + __u8 sequencing; +}; + #include <net/sock.h> struct pppox_sock { @@ -53,6 +61,7 @@ struct pppox_sock { union { struct pppoe_opt pppoe; struct pptp_opt pptp; + struct pppolac_opt lac; } proto; __be16 num; }; |