1
0
Files
irix-657m-src/stand/arcs/include/net/udp.h
2022-09-29 17:59:04 +03:00

13 lines
283 B
C

#ident "include/net/udp.h: $Revision: 1.2 $"
/*
* Udp protocol header.
* Per RFC 768, September, 1981.
*/
struct udphdr {
u_short uh_sport; /* source port */
u_short uh_dport; /* destination port */
short uh_ulen; /* udp length */
u_short uh_sum; /* udp checksum */
};