br.c 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Generic parts
  3. * Linux ethernet bridge
  4. *
  5. * Authors:
  6. * Lennert Buytenhek <buytenh@gnu.org>
  7. *
  8. * $Id: br.c,v 1.47 2001/12/24 00:56:41 davem Exp $
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License
  12. * as published by the Free Software Foundation; either version
  13. * 2 of the License, or (at your option) any later version.
  14. */
  15. #include <linux/config.h>
  16. #include <linux/module.h>
  17. #include <linux/kernel.h>
  18. #include <linux/netdevice.h>
  19. #include <linux/etherdevice.h>
  20. #include <linux/init.h>
  21. #include "br_private.h"
  22. int (*br_should_route_hook) (struct sk_buff **pskb) = NULL;
  23. static int __init br_init(void)
  24. {
  25. br_fdb_init();
  26. #ifdef CONFIG_BRIDGE_NETFILTER
  27. if (br_netfilter_init())
  28. return 1;
  29. #endif
  30. brioctl_set(br_ioctl_deviceless_stub);
  31. br_handle_frame_hook = br_handle_frame;
  32. br_fdb_get_hook = br_fdb_get;
  33. br_fdb_put_hook = br_fdb_put;
  34. register_netdevice_notifier(&br_device_notifier);
  35. return 0;
  36. }
  37. static void __exit br_deinit(void)
  38. {
  39. #ifdef CONFIG_BRIDGE_NETFILTER
  40. br_netfilter_fini();
  41. #endif
  42. unregister_netdevice_notifier(&br_device_notifier);
  43. brioctl_set(NULL);
  44. br_cleanup_bridges();
  45. synchronize_net();
  46. br_fdb_get_hook = NULL;
  47. br_fdb_put_hook = NULL;
  48. br_handle_frame_hook = NULL;
  49. br_fdb_fini();
  50. }
  51. EXPORT_SYMBOL(br_should_route_hook);
  52. module_init(br_init)
  53. module_exit(br_deinit)
  54. MODULE_LICENSE("GPL");
  55. MODULE_VERSION(BR_VERSION);