ipv6_syms.c 1.1 KB

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