if_pppol2tp.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. * (pppol2tp.c). All version information wrt this file is located in pppol2tp.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 __LINUX_IF_PPPOL2TP_H
  15. #define __LINUX_IF_PPPOL2TP_H
  16. #include <asm/types.h>
  17. #ifdef __KERNEL__
  18. #include <linux/in.h>
  19. #endif
  20. /* Structure used to connect() the socket to a particular tunnel UDP
  21. * socket.
  22. */
  23. struct pppol2tp_addr
  24. {
  25. pid_t pid; /* pid that owns the fd.
  26. * 0 => current */
  27. int fd; /* FD of UDP socket to use */
  28. struct sockaddr_in addr; /* IP address and port to send to */
  29. __be16 s_tunnel, s_session; /* For matching incoming packets */
  30. __be16 d_tunnel, d_session; /* For sending outgoing packets */
  31. };
  32. /* Socket options:
  33. * DEBUG - bitmask of debug message categories
  34. * SENDSEQ - 0 => don't send packets with sequence numbers
  35. * 1 => send packets with sequence numbers
  36. * RECVSEQ - 0 => receive packet sequence numbers are optional
  37. * 1 => drop receive packets without sequence numbers
  38. * LNSMODE - 0 => act as LAC.
  39. * 1 => act as LNS.
  40. * REORDERTO - reorder timeout (in millisecs). If 0, don't try to reorder.
  41. */
  42. enum {
  43. PPPOL2TP_SO_DEBUG = 1,
  44. PPPOL2TP_SO_RECVSEQ = 2,
  45. PPPOL2TP_SO_SENDSEQ = 3,
  46. PPPOL2TP_SO_LNSMODE = 4,
  47. PPPOL2TP_SO_REORDERTO = 5,
  48. };
  49. /* Debug message categories for the DEBUG socket option */
  50. enum {
  51. PPPOL2TP_MSG_DEBUG = (1 << 0), /* verbose debug (if
  52. * compiled in) */
  53. PPPOL2TP_MSG_CONTROL = (1 << 1), /* userspace - kernel
  54. * interface */
  55. PPPOL2TP_MSG_SEQ = (1 << 2), /* sequence numbers */
  56. PPPOL2TP_MSG_DATA = (1 << 3), /* data packets */
  57. };
  58. #endif