3 #include <netinet/ether.h>
6 main (int argc
, char *argv
[])
8 struct ether_addr
*valp
, val
;
10 char hostname
[32], buf
[64], *p
;
12 valp
= ether_aton ("12:34:56:78:9a:bc");
14 printf ("ether_aton (\"12:34:56:78:9a:bc\") = %hhx:%hhx:%hhx:%hhx:%hhx:%hhx\n",
15 valp
->ether_addr_octet
[0],
16 valp
->ether_addr_octet
[1],
17 valp
->ether_addr_octet
[2],
18 valp
->ether_addr_octet
[3],
19 valp
->ether_addr_octet
[4],
20 valp
->ether_addr_octet
[5]);
22 result
= (valp
->ether_addr_octet
[0] != 0x12
23 || valp
->ether_addr_octet
[1] != 0x34
24 || valp
->ether_addr_octet
[2] != 0x56
25 || valp
->ether_addr_octet
[3] != 0x78
26 || valp
->ether_addr_octet
[4] != 0x9a
27 || valp
->ether_addr_octet
[5] != 0xbc);
29 if ((r
= ether_line ("0:c0:f0:46:5f:97 host.ether.com \t# comment",
30 &val
, hostname
)) == 0)
32 ether_ntoa_r (&val
, buf
);
33 p
= strchr (buf
, '\0');
37 printf ("ether_line (\"0:c0:f0:46:5f:97 host.ether.com\") = \"%s\"\n",
40 result
|= strcmp ("0:c0:f0:46:5f:97 host.ether.com", buf
) != 0;
44 printf ("ether_line (\"0:c0:f0:46:5f:97 host.ether.com\") = %d\n", r
);
48 r
= ether_line ("0:c0:2:d0 foo.bar ", &val
, hostname
);
49 printf ("ether_line (\"0:c0:2:d0 foo.bar \") = %d\n", r
);
52 r
= ether_line ("0:c0:2:d0:1a:2a ", &val
, hostname
);
53 printf ("ether_line (\"0:c0:2:d0:1a:2a \") = %d\n", r
);