diff options
Diffstat (limited to 'src/plugins/nat/nat44_handoff.c')
-rw-r--r-- | src/plugins/nat/nat44_handoff.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/plugins/nat/nat44_handoff.c b/src/plugins/nat/nat44_handoff.c index 69cdc42870f..651c8d1f4ac 100644 --- a/src/plugins/nat/nat44_handoff.c +++ b/src/plugins/nat/nat44_handoff.c @@ -33,26 +33,12 @@ typedef struct u8 output; } nat44_handoff_trace_t; -#define foreach_nat44_handoff_error \ -_(CONGESTION_DROP, "congestion drop") \ -_(SAME_WORKER, "same worker") \ -_(DO_HANDOFF, "do handoff") - -typedef enum -{ -#define _(sym,str) NAT44_HANDOFF_ERROR_##sym, - foreach_nat44_handoff_error -#undef _ - NAT44_HANDOFF_N_ERROR, -} nat44_handoff_error_t; - static char *nat44_handoff_error_strings[] = { #define _(sym,string) string, foreach_nat44_handoff_error #undef _ }; - static u8 * format_nat44_handoff_trace (u8 * s, va_list * args) { |