eth.c (86e65da9c1fc6fb421b9f796b597b3eced6b55ab) eth.c (20380731bc2897f2952ae055420972ded4cd786e)
1/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Ethernet-type device handling.
7 *
8 * Version: @(#)eth.c 1.0.7 05/25/93

--- 48 unchanged lines hidden (view full) ---

57#include <net/arp.h>
58#include <net/sock.h>
59#include <net/ipv6.h>
60#include <net/ip.h>
61#include <asm/uaccess.h>
62#include <asm/system.h>
63#include <asm/checksum.h>
64
1/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Ethernet-type device handling.
7 *
8 * Version: @(#)eth.c 1.0.7 05/25/93

--- 48 unchanged lines hidden (view full) ---

57#include <net/arp.h>
58#include <net/sock.h>
59#include <net/ipv6.h>
60#include <net/ip.h>
61#include <asm/uaccess.h>
62#include <asm/system.h>
63#include <asm/checksum.h>
64
65extern int __init netdev_boot_setup(char *str);
66
67__setup("ether=", netdev_boot_setup);
68
69/*
70 * Create the Ethernet MAC header for an arbitrary protocol layer
71 *
72 * saddr=NULL means use device source address
73 * daddr=NULL means leave destination address (eg unresolved arp)
74 */

--- 232 unchanged lines hidden ---
65__setup("ether=", netdev_boot_setup);
66
67/*
68 * Create the Ethernet MAC header for an arbitrary protocol layer
69 *
70 * saddr=NULL means use device source address
71 * daddr=NULL means leave destination address (eg unresolved arp)
72 */

--- 232 unchanged lines hidden ---