15 lines
225 B
Plaintext
15 lines
225 B
Plaintext
/*
|
|
* 10Mb/s Ethernet.
|
|
*/
|
|
|
|
export ether.type;
|
|
|
|
typedef address etheraddr:48;
|
|
|
|
protocol ether "Ethernet" (type)
|
|
{
|
|
etheraddr dst "Destination Address";
|
|
etheraddr src "Source Address";
|
|
u_short type "Packet Type";
|
|
}
|