1
0
mirror of https://passt.top/passt synced 2024-09-30 19:15:47 +00:00

util: Drop CHECK_SET_MIN_MAX{,_PROTO_FD} macros

...those were used when epoll references used to be socket numbers,
they should have gone away a long time ago.

Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
Stefano Brivio 2022-03-15 01:02:02 +01:00
parent 5c0426981e
commit 6a1150c026

14
util.h
View File

@ -26,20 +26,6 @@ void trace_init(int enable);
#define ETH_MIN_MTU 68
#endif
#define CHECK_SET_MIN_MAX(basename, fd) \
do { \
if ((fd) < basename##min) \
basename##min = (fd); \
if ((fd) > basename##max) \
basename##max = (fd); \
} while (0)
#define CHECK_SET_MIN_MAX_PROTO_FD(proto, ipproto, proto_ctx, fd) \
do { \
if ((proto) == (ipproto)) \
CHECK_SET_MIN_MAX(c->proto_ctx.fd_, (fd)); \
} while (0)
#ifndef MIN
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
#endif