1f08c3bdfSopenharmony_ci// SPDX-License-Identifier: GPL-2.0-or-later 2f08c3bdfSopenharmony_ci/* 3f08c3bdfSopenharmony_ci * Copyright (c) 2017 Petr Vorel <pvorel@suse.cz> 4f08c3bdfSopenharmony_ci */ 5f08c3bdfSopenharmony_ci 6f08c3bdfSopenharmony_ci#ifndef LAPI_IN_H__ 7f08c3bdfSopenharmony_ci#define LAPI_IN_H__ 8f08c3bdfSopenharmony_ci 9f08c3bdfSopenharmony_ci#include <netinet/in.h> 10f08c3bdfSopenharmony_ci 11f08c3bdfSopenharmony_ci#ifndef IPPROTO_DCCP 12f08c3bdfSopenharmony_ci#define IPPROTO_DCCP 33 13f08c3bdfSopenharmony_ci#endif 14f08c3bdfSopenharmony_ci 15f08c3bdfSopenharmony_ci#ifndef IPPROTO_UDPLITE 16f08c3bdfSopenharmony_ci# define IPPROTO_UDPLITE 136 /* UDP-Lite (RFC 3828) */ 17f08c3bdfSopenharmony_ci#endif 18f08c3bdfSopenharmony_ci 19f08c3bdfSopenharmony_ci#ifndef IP_BIND_ADDRESS_NO_PORT 20f08c3bdfSopenharmony_ci# define IP_BIND_ADDRESS_NO_PORT 24 21f08c3bdfSopenharmony_ci#endif 22f08c3bdfSopenharmony_ci 23f08c3bdfSopenharmony_ci#endif /* LAPI_IN_H__ */ 24