#ifndef _NETINET_UDP_H_
#define _NETINET_UDP_H_
#include <sys/appleapiopts.h>
+#include <sys/types.h> /* u_short */
/*
* Udp protocol header.
u_short uh_sum; /* udp checksum */
};
+/*
+ * User-settable options (used with setsockopt).
+ */
+#define UDP_NOCKSUM 0x01 /* don't checksum outbound payloads */
#endif