Subversion Repositories HelenOS

Rev

Rev 3992 | Rev 4558 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3992 Rev 4075
Line 37... Line 37...
37
 
37
 
38
#ifndef __NET_ETHERNET_PROTOCOLS_H__
38
#ifndef __NET_ETHERNET_PROTOCOLS_H__
39
#define __NET_ETHERNET_PROTOCOLS_H__
39
#define __NET_ETHERNET_PROTOCOLS_H__
40
 
40
 
41
/** Ethernet minimal protocol number.
41
/** Ethernet minimal protocol number.
-
 
42
 *  According to the IEEE 802.3 specification.
42
 */
43
 */
43
#define ETH_MIN_PROTO   1501
44
#define ETH_MIN_PROTO   0x0600 /*1536*/
44
 
45
 
45
/** Ethernet loopback packet protocol type.
46
/** Ethernet loopback packet protocol type.
46
 */
47
 */
47
#define ETH_P_LOOP      0x0060
48
#define ETH_P_LOOP      0x0060
48
 
49