diff options
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 90b5fae5d714..a6577af0c4e6 100644 --- a/include/linux/if_pppox.h +++ b/include/linux/if_pppox.h | |||
@@ -72,6 +72,15 @@ struct sockaddr_pppol2tp { | |||
72 | struct pppol2tp_addr pppol2tp; | 72 | struct pppol2tp_addr pppol2tp; |
73 | }__attribute__ ((packed)); | 73 | }__attribute__ ((packed)); |
74 | 74 | ||
75 | /* The L2TPv3 protocol changes tunnel and session ids from 16 to 32 | ||
76 | * bits. So we need a different sockaddr structure. | ||
77 | */ | ||
78 | struct sockaddr_pppol2tpv3 { | ||
79 | sa_family_t sa_family; /* address family, AF_PPPOX */ | ||
80 | unsigned int sa_protocol; /* protocol identifier */ | ||
81 | struct pppol2tpv3_addr pppol2tp; | ||
82 | } __attribute__ ((packed)); | ||
83 | |||
75 | /********************************************************************* | 84 | /********************************************************************* |
76 | * | 85 | * |
77 | * ioctl interface for defining forwarding of connections | 86 | * ioctl interface for defining forwarding of connections |