Changes in benchmark/io/http/options.cfa [329e26a:40a64f78]
- File:
-
- 1 edited
-
benchmark/io/http/options.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/io/http/options.cfa
r329e26a r40a64f78 35 35 36 36 { // socket 37 8080, // port 38 10, // backlog 39 1024, // buflen 40 false // reuseport 37 8080, // port 38 10, // backlog 39 1024 // buflen 41 40 }, 42 41 … … 53 52 54 53 void parse_options( int argc, char * argv[] ) { 54 // bool fixedfd = false; 55 // bool sqkpoll = false; 56 // bool iokpoll = false; 55 57 unsigned nentries = 0; 56 58 bool isolate = false; … … 68 70 {'\0', "shell", "Disable interactive mode", options.interactive, parse_setfalse}, 69 71 {'\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},71 72 {'\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}, 72 73 {'\0', "seed", "seed to use for hashing", options.file_cache.hash_seed },
Note:
See TracChangeset
for help on using the changeset viewer.