ipv6.h 848 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef _DCCP_IPV6_H
  2. #define _DCCP_IPV6_H
  3. /*
  4. * net/dccp/ipv6.h
  5. *
  6. * An implementation of the DCCP protocol
  7. * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #include <linux/config.h>
  14. #include <linux/dccp.h>
  15. #include <linux/ipv6.h>
  16. struct dccp6_sock {
  17. struct dccp_sock dccp;
  18. /*
  19. * ipv6_pinfo has to be the last member of dccp6_sock,
  20. * see inet6_sk_generic.
  21. */
  22. struct ipv6_pinfo inet6;
  23. };
  24. struct dccp6_request_sock {
  25. struct dccp_request_sock dccp;
  26. struct inet6_request_sock inet6;
  27. };
  28. struct dccp6_timewait_sock {
  29. struct inet_timewait_sock inet;
  30. struct inet6_timewait_sock tw6;
  31. };
  32. #endif /* _DCCP_IPV6_H */