You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
420 B
19 lines
420 B
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2018 Oracle and/or its affiliates.
|
|
*/
|
|
|
|
#ifndef LAPI_UDP_H__
|
|
#define LAPI_UDP_H__
|
|
|
|
#include <netinet/udp.h>
|
|
|
|
#ifndef UDPLITE_SEND_CSCOV
|
|
# define UDPLITE_SEND_CSCOV 10 /* sender partial coverage (as sent) */
|
|
#endif
|
|
#ifndef UDPLITE_RECV_CSCOV
|
|
# define UDPLITE_RECV_CSCOV 11 /* receiver partial coverage (threshold ) */
|
|
#endif
|
|
|
|
#endif /* LAPI_UDP_H__ */
|