ipv6.h 608 B

12345678910111213141516171819202122232425262728293031
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. #ifndef _DCCP_IPV6_H
  3. #define _DCCP_IPV6_H
  4. /*
  5. * net/dccp/ipv6.h
  6. *
  7. * An implementation of the DCCP protocol
  8. * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
  9. */
  10. #include <linux/dccp.h>
  11. #include <linux/ipv6.h>
  12. struct dccp6_sock {
  13. struct dccp_sock dccp;
  14. /*
  15. * ipv6_pinfo has to be the last member of dccp6_sock,
  16. * see inet6_sk_generic.
  17. */
  18. struct ipv6_pinfo inet6;
  19. };
  20. struct dccp6_request_sock {
  21. struct dccp_request_sock dccp;
  22. };
  23. struct dccp6_timewait_sock {
  24. struct inet_timewait_sock inet;
  25. };
  26. #endif /* _DCCP_IPV6_H */