mirror of
https://github.com/pocoproject/poco.git
synced 2026-01-01 18:23:05 +01:00
* reactor http server * fix * test logic * add reactor server session , use buf to cache socket buffer * add reactor example * fix: nodelay, otherwise ack will be after 50 ms * tcp reactor server support multi listener * fix: tcp reactor connection lifetime about socket * feat: add tcp reactor params * format * check http reqeust complete, dynamic size buffer in reactor * remove try catch * remove debug logger * remove debug logger * fix: should not pop in destructor * delete useless * remove cankeepalive temporarily, optimize check complete req * coding style * coding style * reactor server session unit test * http reactor time server add delay param * optimize switch case, and pop completed msg in destructor * refactor reactor server session * fix: check completed request when headers are in lower case like oha, add unit tests * fix auto_ptr compile error, remove logger and coding style * compile and tests fix, add reactor obj in makefile and vcxproj * compile and tests fix in win, add reactor sample vcxproj * compile and tests fix in macos when visibility is hidden
17 lines
598 B
Properties
17 lines
598 B
Properties
# This is a sample configuration file for HTTPTimeServer
|
|
|
|
logging.loggers.root.channel.class = ConsoleChannel
|
|
logging.loggers.root.channel.formatter = f1
|
|
logging.loggers.app.name = Application
|
|
logging.loggers.app.channel = c1
|
|
logging.formatters.f1.class = PatternFormatter
|
|
logging.formatters.f1.pattern = %L%Y-%m-%dT%H:%M:%S.%i%z|%E|%p|%J|%t
|
|
logging.channels.c1.class = ConsoleChannel
|
|
logging.channels.c1.formatter = f1
|
|
HTTPTimeServer.format = %W, %e %b %y %H:%M:%S %Z
|
|
HTTPTimeServer.port = 9980
|
|
#HTTPTimeServer.maxQueued = 200
|
|
#HTTPTimeServer.maxThreads = 64
|
|
|
|
HTTPReactorTimeServer.delay = 10
|