12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #ifndef __NETINET_UDP_H
- #define __NETINET_UDP_H 1
- #include <sys/cdefs.h>
- #include <sys/types.h>
- __BEGIN_DECLS
- #ifdef __FAVOR_BSD
- struct udphdr {
- u_int16_t uh_sport;
- u_int16_t uh_dport;
- u_int16_t uh_ulen;
- u_int16_t uh_sum;
- };
- #else
- struct udphdr {
- u_int16_t source;
- u_int16_t dest;
- u_int16_t len;
- u_int16_t check;
- };
- #endif
- #define SOL_UDP 17
- __END_DECLS
- #endif
|