1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-28 20:25:38 +03:00
systemd/klibc/include/netinet/udp.h

20 lines
253 B
C

/*
* netinet/udp.h
*/
#ifndef _NETINET_UDP_H
#define _NETINET_UDP_H
/*
* We would include linux/udp.h, but it brings in too much other stuff
*/
struct udphdr {
__u16 source;
__u16 dest;
__u16 len;
__u16 check;
};
#endif /* _NETINET_UDP_H */