ipv6_syms.c 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #include <linux/module.h>
  2. #include <net/protocol.h>
  3. #include <net/ipv6.h>
  4. #include <net/addrconf.h>
  5. #include <net/ip6_route.h>
  6. #include <net/xfrm.h>
  7. EXPORT_SYMBOL(icmpv6_send);
  8. EXPORT_SYMBOL(icmpv6_statistics);
  9. EXPORT_SYMBOL(icmpv6_err_convert);
  10. EXPORT_SYMBOL(ndisc_mc_map);
  11. EXPORT_SYMBOL(register_inet6addr_notifier);
  12. EXPORT_SYMBOL(unregister_inet6addr_notifier);
  13. EXPORT_SYMBOL(ip6_route_output);
  14. EXPORT_SYMBOL(ipv6_setsockopt);
  15. EXPORT_SYMBOL(ipv6_getsockopt);
  16. EXPORT_SYMBOL(inet6_register_protosw);
  17. EXPORT_SYMBOL(inet6_unregister_protosw);
  18. EXPORT_SYMBOL(inet6_add_protocol);
  19. EXPORT_SYMBOL(inet6_del_protocol);
  20. EXPORT_SYMBOL(ip6_xmit);
  21. EXPORT_SYMBOL(inet6_release);
  22. EXPORT_SYMBOL(inet6_bind);
  23. EXPORT_SYMBOL(inet6_getname);
  24. EXPORT_SYMBOL(inet6_ioctl);
  25. EXPORT_SYMBOL(ipv6_get_saddr);
  26. EXPORT_SYMBOL(ipv6_chk_addr);
  27. EXPORT_SYMBOL(in6_dev_finish_destroy);
  28. #ifdef CONFIG_XFRM
  29. EXPORT_SYMBOL(xfrm6_rcv);
  30. EXPORT_SYMBOL(xfrm6_input_addr);
  31. EXPORT_SYMBOL(xfrm6_find_1stfragopt);
  32. #endif
  33. EXPORT_SYMBOL(rt6_lookup);
  34. EXPORT_SYMBOL(ipv6_push_nfrag_opts);