From 1eb14d730502d3f87111ae50d997e48def660623 Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Tue, 25 Jan 2022 19:18:52 +0100 Subject: 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 --- util.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'util.h') diff --git a/util.h b/util.h index 44c85db..63cd8f9 100644 --- a/util.h +++ b/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) \ -- cgit v1.2.3