summaryrefslogtreecommitdiffstats
path: root/src/kernel/tests/include/lapi/netinet_in.h
blob: e88485c5ca373a8810ed69722230963f00eb39d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Copyright (c) 2017 Petr Vorel <pvorel@suse.cz>
 */

#ifndef LAPI_IN_H__
#define LAPI_IN_H__

#include <netinet/in.h>

#ifndef IPPROTO_DCCP
#define IPPROTO_DCCP		33
#endif

#ifndef IPPROTO_UDPLITE
# define IPPROTO_UDPLITE	136 /* UDP-Lite (RFC 3828) */
#endif

#ifndef IP_BIND_ADDRESS_NO_PORT
# define IP_BIND_ADDRESS_NO_PORT	24
#endif

#endif	/* LAPI_IN_H__ */