if_pppopns.h 983 B

123456789101112131415161718192021222324252627282930313233
  1. /* include/linux/if_pppopns.h
  2. *
  3. * Header for PPP on PPTP Network Server / PPPoPNS Socket (RFC 2637)
  4. *
  5. * Copyright (C) 2009 Google, Inc.
  6. * Author: Chia-chi Yeh <chiachi@android.com>
  7. *
  8. * This software is licensed under the terms of the GNU General Public
  9. * License version 2, as published by the Free Software Foundation, and
  10. * may be copied, distributed, and modified under those terms.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. */
  17. #ifndef __LINUX_IF_PPPOPNS_H
  18. #define __LINUX_IF_PPPOPNS_H
  19. #include <linux/socket.h>
  20. #include <linux/types.h>
  21. struct sockaddr_pppopns {
  22. sa_family_t sa_family; /* AF_PPPOX */
  23. unsigned int sa_protocol; /* PX_PROTO_OPNS */
  24. int tcp_socket;
  25. __u16 local;
  26. __u16 remote;
  27. } __attribute__((packed));
  28. #endif /* __LINUX_IF_PPPOPNS_H */