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