Changes in benchmark/io/http/options.cfa [40a64f78:329e26a]
- File:
-
- 1 edited
-
benchmark/io/http/options.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/io/http/options.cfa
r40a64f78 r329e26a 35 35 36 36 { // socket 37 8080, // port 38 10, // backlog 39 1024 // buflen 37 8080, // port 38 10, // backlog 39 1024, // buflen 40 false // reuseport 40 41 }, 41 42 … … 52 53 53 54 void parse_options( int argc, char * argv[] ) { 54 // bool fixedfd = false;55 // bool sqkpoll = false;56 // bool iokpoll = false;57 55 unsigned nentries = 0; 58 56 bool isolate = false; … … 70 68 {'\0', "shell", "Disable interactive mode", options.interactive, parse_setfalse}, 71 69 {'\0', "accept-backlog", "Maximum number of pending accepts", options.socket.backlog}, 70 {'\0', "reuseport", "Use acceptor threads with reuse port SO_REUSEPORT", options.socket.reuseport, parse_settrue}, 72 71 {'\0', "request_len", "Maximum number of bytes in the http request, requests with more data will be answered with Http Code 414", options.socket.buflen}, 73 72 {'\0', "seed", "seed to use for hashing", options.file_cache.hash_seed },
Note:
See TracChangeset
for help on using the changeset viewer.