summaryrefslogtreecommitdiffhomepage
path: root/src/stream/ngx_stream_handler.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2015-08-13Stream: fixed potential error log buffer overrun.Vladimir Homutov1-1/+3
Found by Duan Jiong <djduanjiong@gmail.com>.
2015-08-10Stream: the "tcp_nodelay" directive.Vladimir Homutov1-0/+19
2015-06-18Stream: connection limiting module.Vladimir Homutov1-0/+9
stream { limit_conn_zone $binary_remote_addr zone=perip:1m; limit_conn_log_level error; server { ... limit_conn perip 1; } }
2015-06-04Stream: access module.Vladimir Homutov1-12/+25
stream { server { ... allow 127.0.0.1; deny all; } }
2015-04-25Core: the ngx_set_connection_log() macro.Vladimir Homutov1-1/+1
The http and stream versions of this macro were identical.
2015-04-20Stream: port from NGINX+.Ruslan Ermilov1-0/+296