Blame view

include/linux/if_ether.h 1.15 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
  /*
   * INET		An implementation of the TCP/IP protocol suite for the LINUX
   *		operating system.  INET is implemented using the  BSD Socket
   *		interface as the means of communication with the user level.
   *
   *		Global definitions for the Ethernet IEEE 802.3 interface.
   *
   * Version:	@(#)if_ether.h	1.0.1a	02/08/94
   *
   * Author:	Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
   *		Donald Becker, <becker@super.org>
113aa838e   Alan Cox   net: Rationalise ...
12
   *		Alan Cox, <alan@lxorguk.ukuu.org.uk>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13
14
15
16
17
18
19
   *		Steve Whitehouse, <gw7rrm@eeshack3.swan.ac.uk>
   *
   *		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.
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
21
  #ifndef _LINUX_IF_ETHER_H
  #define _LINUX_IF_ETHER_H
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22
  #include <linux/skbuff.h>
607ca46e9   David Howells   UAPI: (Scripted) ...
23
  #include <uapi/linux/if_ether.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24
25
26
  
  static inline struct ethhdr *eth_hdr(const struct sk_buff *skb)
  {
98e399f82   Arnaldo Carvalho de Melo   [SK_BUFF]: Introd...
27
  	return (struct ethhdr *)skb_mac_header(skb);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
28
  }
20380731b   Arnaldo Carvalho de Melo   [NET]: Fix sparse...
29

3b04ddde0   Stephen Hemminger   [NET]: Move hardw...
30
  int eth_header_parse(const struct sk_buff *skb, unsigned char *haddr);
7ffc49a6e   Michael Chan   [ETH]: Combine fo...
31
  extern ssize_t sysfs_format_mac(char *buf, const unsigned char *addr, int len);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32
  #endif	/* _LINUX_IF_ETHER_H */