Skip to content

Commit 80df2c6

Browse files
Merge pull request #89 from google/revert-88-reuseaddr
Revert "add --reuseaddr to rr binaries"
2 parents 82455c8 + 9b5f5cf commit 80df2c6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

define_all_flags.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,8 @@ struct flags_parser *add_flags_rr(struct flags_parser *fp)
9393
DEFINE_FLAG(fp, struct percentiles, percentiles, {}, 'p', "Set reported latency percentiles (list)");
9494
DEFINE_FLAG_PARSER(fp, percentiles, percentiles_parse);
9595
DEFINE_FLAG_PRINTER(fp, percentiles, percentiles_print);
96-
DEFINE_FLAG(fp, int, test_length, 10, 'l', "Test length, >0 seconds, <0 transactions");
97-
DEFINE_FLAG(fp, int, buffer_size, 65536, 'B', "Number of bytes that each read()/send() can transfer at once");
98-
DEFINE_FLAG(fp, bool, reuseaddr, false, 'R', "Use SO_REUSEADDR on sockets");
96+
DEFINE_FLAG(fp, int, test_length, 10, 'l', "Test length, >0 seconds, <0 transactions");
97+
DEFINE_FLAG(fp, int, buffer_size, 65536, 'B', "Number of bytes that each read()/send() can transfer at once");
9998

10099
/* Return the updated fp */
101100
return (fp);

0 commit comments

Comments
 (0)