xref: /inferno-os/module/ether.m (revision 7ef44d652ae9e5e1f5b3465d73684e4a54de73c0)
1Ether: module
2{
3	PATH:	con "/dis/lib/ether.dis";
4	Eaddrlen:	con 6;
5
6	init:	fn();
7	parse:	fn(s: string): array of byte;
8	text:	fn(a: array of byte): string;
9	addressof:	fn(dev: string): array of byte;
10	eqaddr:	fn(a, b: array of byte): int;
11};
12