aboutgitcodebugslistschat
path: root/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'util.h')
-rw-r--r--util.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/util.h b/util.h
index bfab221..d80157c 100644
--- a/util.h
+++ b/util.h
@@ -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