152a38012Sejakowatz /* 2*6996e5b2SAugustin Cavalier * Copyright 2020, Haiku, Inc. All rights reserved. 3*6996e5b2SAugustin Cavalier * Distributed under the terms of the MIT License. 452a38012Sejakowatz */ 5*6996e5b2SAugustin Cavalier #ifndef _NETINET_UDP_H 6*6996e5b2SAugustin Cavalier #define _NETINET_UDP_H 752a38012Sejakowatz 862b4effaSIthamar R. Adema #include <stdint.h> 962b4effaSIthamar R. Adema 1052a38012Sejakowatz struct udphdr { 1162b4effaSIthamar R. Adema uint16_t uh_sport; 1262b4effaSIthamar R. Adema uint16_t uh_dport; 1362b4effaSIthamar R. Adema uint16_t uh_ulen; 1462b4effaSIthamar R. Adema uint16_t uh_sum; 1552a38012Sejakowatz }; 1652a38012Sejakowatz 17*6996e5b2SAugustin Cavalier #endif /* _NETINET_UDP_H */ 18