summaryrefslogtreecommitdiff
path: root/netsniff-ng.c
diff options
context:
space:
mode:
Diffstat (limited to 'netsniff-ng.c')
-rw-r--r--netsniff-ng.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/netsniff-ng.c b/netsniff-ng.c
index f447864..6cd0cf4 100644
--- a/netsniff-ng.c
+++ b/netsniff-ng.c
@@ -1278,7 +1278,8 @@ int main(int argc, char **argv)
case 'K':
if (!strncmp(optarg, "hash", strlen("hash")))
ctx.fanout_type = PACKET_FANOUT_HASH;
- else if (!strncmp(optarg, "lb", strlen("lb")))
+ else if (!strncmp(optarg, "lb", strlen("lb")) ||
+ !strncmp(optarg, "rr", strlen("rr")))
ctx.fanout_type = PACKET_FANOUT_LB;
else if (!strncmp(optarg, "cpu", strlen("cpu")))
ctx.fanout_type = PACKET_FANOUT_CPU;