if_pppol2tp.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /***************************************************************************
  2. * Linux PPP over L2TP (PPPoL2TP) Socket Implementation (RFC 2661)
  3. *
  4. * This file supplies definitions required by the PPP over L2TP driver
  5. * (l2tp_ppp.c). All version information wrt this file is located in l2tp_ppp.c
  6. *
  7. * License:
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version
  11. * 2 of the License, or (at your option) any later version.
  12. *
  13. */
  14. #ifndef _UAPI__LINUX_IF_PPPOL2TP_H
  15. #define _UAPI__LINUX_IF_PPPOL2TP_H
  16. #include <linux/types.h>
  17. /* Structure used to connect() the socket to a particular tunnel UDP
  18. * socket over IPv4.
  19. */
  20. struct pppol2tp_addr {
  21. __kernel_pid_t pid; /* pid that owns the fd.
  22. * 0 => current */
  23. int fd; /* FD of UDP socket to use */
  24. struct sockaddr_in addr; /* IP address and port to send to */
  25. __u16 s_tunnel, s_session; /* For matching incoming packets */
  26. __u16 d_tunnel, d_session; /* For sending outgoing packets */
  27. };
  28. /* Structure used to connect() the socket to a particular tunnel UDP
  29. * socket over IPv6.
  30. */
  31. struct pppol2tpin6_addr {
  32. __kernel_pid_t pid; /* pid that owns the fd.
  33. * 0 => current */
  34. int fd; /* FD of UDP socket to use */
  35. __u16 s_tunnel, s_session; /* For matching incoming packets */
  36. __u16 d_tunnel, d_session; /* For sending outgoing packets */
  37. struct sockaddr_in6 addr; /* IP address and port to send to */
  38. };
  39. /* The L2TPv3 protocol changes tunnel and session ids from 16 to 32
  40. * bits. So we need a different sockaddr structure.
  41. */
  42. struct pppol2tpv3_addr {
  43. __kernel_pid_t pid; /* pid that owns the fd.
  44. * 0 => current */
  45. int fd; /* FD of UDP or IP socket to use */
  46. struct sockaddr_in addr; /* IP address and port to send to */
  47. __u32 s_tunnel, s_session; /* For matching incoming packets */
  48. __u32 d_tunnel, d_session; /* For sending outgoing packets */
  49. };
  50. struct pppol2tpv3in6_addr {
  51. __kernel_pid_t pid; /* pid that owns the fd.
  52. * 0 => current */
  53. int fd; /* FD of UDP or IP socket to use */
  54. __u32 s_tunnel, s_session; /* For matching incoming packets */
  55. __u32 d_tunnel, d_session; /* For sending outgoing packets */
  56. struct sockaddr_in6 addr; /* IP address and port to send to */
  57. };
  58. /* Socket options:
  59. * DEBUG - bitmask of debug message categories
  60. * SENDSEQ - 0 => don't send packets with sequence numbers
  61. * 1 => send packets with sequence numbers
  62. * RECVSEQ - 0 => receive packet sequence numbers are optional
  63. * 1 => drop receive packets without sequence numbers
  64. * LNSMODE - 0 => act as LAC.
  65. * 1 => act as LNS.
  66. * REORDERTO - reorder timeout (in millisecs). If 0, don't try to reorder.
  67. */
  68. enum {
  69. PPPOL2TP_SO_DEBUG = 1,
  70. PPPOL2TP_SO_RECVSEQ = 2,
  71. PPPOL2TP_SO_SENDSEQ = 3,
  72. PPPOL2TP_SO_LNSMODE = 4,
  73. PPPOL2TP_SO_REORDERTO = 5,
  74. };
  75. /* Debug message categories for the DEBUG socket option */
  76. enum {
  77. PPPOL2TP_MSG_DEBUG = (1 << 0), /* verbose debug (if
  78. * compiled in) */
  79. PPPOL2TP_MSG_CONTROL = (1 << 1), /* userspace - kernel
  80. * interface */
  81. PPPOL2TP_MSG_SEQ = (1 << 2), /* sequence numbers */
  82. PPPOL2TP_MSG_DATA = (1 << 3), /* data packets */
  83. };
  84. #endif /* _UAPI__LINUX_IF_PPPOL2TP_H */