ipv6.h 517 B

123456789101112131415161718192021222324252627
  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. struct ipv6_pinfo inet6;
  15. };
  16. struct dccp6_request_sock {
  17. struct dccp_request_sock dccp;
  18. };
  19. struct dccp6_timewait_sock {
  20. struct inet_timewait_sock inet;
  21. };
  22. #endif /* _DCCP_IPV6_H */