xref: /aosp_15_r20/external/ltp/include/lapi/netinet_in.h (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2017 Petr Vorel <[email protected]>
4  */
5 
6 #ifndef LAPI_IN_H__
7 #define LAPI_IN_H__
8 
9 #include <netinet/in.h>
10 
11 #ifndef IPPROTO_DCCP
12 #define IPPROTO_DCCP		33
13 #endif
14 
15 #ifndef IPPROTO_UDPLITE
16 # define IPPROTO_UDPLITE	136 /* UDP-Lite (RFC 3828) */
17 #endif
18 
19 #ifndef IP_BIND_ADDRESS_NO_PORT
20 # define IP_BIND_ADDRESS_NO_PORT	24
21 #endif
22 
23 #endif	/* LAPI_IN_H__ */
24