Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/rule_add/prog.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,10 @@ int main(int argc, char *argv[])
printf(" --max-len The maximum packet length to match.\n");
printf(" --tos The IP Type of Service to match.\n\n");

printf(" --pps The minimum packet rate (per second) to match.\n");
printf(" --bps The minimum byte rate (per second) to match\n\n");
printf(" --ip-pps The minimum IP-level packet rate (per second) to match.\n");
printf(" --ip-bps The minimum IP-level byte rate (per second) to match.\n");
printf(" --flow-pps The minimum flow-level packet rate (per second) to match.\n");
printf(" --flow-bps The minimum flow-level byte rate (per second) to match.\n\n");

printf(" --tcp Enable or disables matching on the TCP protocol.\n");
printf(" --tsport The TCP source port to match on.\n");
Expand Down Expand Up @@ -527,4 +529,4 @@ int main(int argc, char *argv[])
printf("Success! Exiting.\n");

return EXIT_SUCCESS;
}
}