util: Fall-back definitions for SECCOMP_RET_KILL_PROCESS, ETH_{MAX,MIN}_MTU
They're not available on some older toolchains. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
fa7e2e7016
commit
1eb14d7305
1 changed files with 10 additions and 0 deletions
10
util.h
10
util.h
|
@ -8,6 +8,16 @@ void warn(const char *format, ...);
|
|||
void info(const char *format, ...);
|
||||
void debug(const char *format, ...);
|
||||
|
||||
#ifndef SECCOMP_RET_KILL_PROCESS
|
||||
#define SECCOMP_RET_KILL_PROCESS SECCOMP_RET_KILL
|
||||
#endif
|
||||
#ifndef ETH_MAX_MTU
|
||||
#define ETH_MAX_MTU USHRT_MAX
|
||||
#endif
|
||||
#ifndef ETH_MIN_MTU
|
||||
#define ETH_MIN_MTU 68
|
||||
#endif
|
||||
|
||||
#define CHECK_SET_MIN_MAX(basename, fd) \
|
||||
do { \
|
||||
if ((fd) < basename##min) \
|
||||
|
|
Loading…
Reference in a new issue