Skip to content

Commit

Permalink
allow load up to 400K PPS
Browse files Browse the repository at this point in the history
  • Loading branch information
alandekok committed Jan 4, 2020
1 parent dc9cea9 commit 529a76f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/proto_radius/proto_radius_load.c
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ static int mod_bootstrap(void *instance, CONF_SECTION *cs)
FR_INTEGER_BOUND_CHECK("max_packet_size", inst->max_packet_size, <=, 65536);

FR_INTEGER_BOUND_CHECK("start_pps", inst->load.start_pps, >=, 10);
FR_INTEGER_BOUND_CHECK("start_pps", inst->load.start_pps, <, 100000);
FR_INTEGER_BOUND_CHECK("start_pps", inst->load.start_pps, <, 400000);

FR_INTEGER_BOUND_CHECK("step", inst->load.step, >=, 1);
FR_INTEGER_BOUND_CHECK("step", inst->load.step, <, 100000);
Expand Down

0 comments on commit 529a76f

Please sign in to comment.