simple reliable networking over ethernet. Provides IPv4 ARP, ICMP echo reply, and UDP unicast. Does NOT provide TCP, that's not simple :-).
Revision 7:45bae1fecc36, committed 2015-04-01
- Comitter:
- altasoul
- Date:
- Wed Apr 01 20:58:30 2015 +0000
- Parent:
- 6:b45fde7a2919
- Commit message:
- Quiet the inet unhandled protocol printf
Changed in this revision
inet.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r b45fde7a2919 -r 45bae1fecc36 inet.cpp --- a/inet.cpp Wed Apr 01 19:38:34 2015 +0000 +++ b/inet.cpp Wed Apr 01 20:58:30 2015 +0000 @@ -151,5 +151,7 @@ }; if (buf[IP_PROTO_O] == 0x01) handle_icmp_packet(buf, len); else if (buf[IP_PROTO_O] == 0x11) handle_udp_packet(buf, len); +#if 0 else printf("Protocol 0x%x\r\n", buf[IP_PROTO_O]); +#endif }