25 lines
567 B
C
25 lines
567 B
C
/* @(#)udp.h 1.1 94/10/31 SMI; from UCB 7.1 6/5/86 */
|
|
|
|
/*
|
|
* Copyright (c) 1982, 1986 Regents of the University of California.
|
|
* All rights reserved. The Berkeley software License Agreement
|
|
* specifies the terms and conditions for redistribution.
|
|
*/
|
|
|
|
/*
|
|
* Udp protocol header.
|
|
* Per RFC 768, September, 1981.
|
|
*/
|
|
|
|
#ifndef _netinet_udp_h
|
|
#define _netinet_udp_h
|
|
|
|
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 */
|
|
};
|
|
|
|
#endif /*!_netinet_udp_h*/
|