- 论坛徽章:
- 0
|
- /*
- * Generic parts
- * Linux ethernet bridge
- *
- * Authors:
- * Lennert Buytenhek <buytenh@gnu.org>;
- *
- * $Id: br.c,v 1.45 2000/10/22 18:26:07 davem Exp $
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version
- * 2 of the License, or (at your option) any later version.
- */
- #include <linux/config.h>;
- #include <linux/module.h>;
- #include <linux/kernel.h>;
- #include <linux/miscdevice.h>;
- #include <linux/netdevice.h>;
- #include <linux/etherdevice.h>;
- #include <linux/init.h>;
- #include <linux/if_bridge.h>;
- #include <asm/uaccess.h>;
复制代码 |
|