1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Copyright (c) 2018 Oracle and/or its affiliates. 4 */ 5 6 #ifndef LAPI_SCTP_H__ 7 #define LAPI_SCTP_H__ 8 9 #ifdef HAVE_NETINET_SCTP_H 10 # include <netinet/sctp.h> 11 #endif 12 13 #ifndef SCTP_SOCKOPT_BINDX_ADD 14 # define SCTP_SOCKOPT_BINDX_ADD 100 15 #endif 16 17 #endif /* LAPI_SCTP_H__ */ 18