Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-08-29 | Implemented basic statistics API. | Valentin Bartenev | 1 | -2/+7 | |
2020-08-05 | Fixed nxt_conn_accept_alloc() behavior in low memory conditions. | Valentin Bartenev | 1 | -5/+5 | |
Earlier, if nxt_mp_create() failed to allocate memory while accepting a new connection, the resulting NULL was subsequently passed to nxt_mp_destroy(), crashing the process. More, if nxt_mp_create() was successful but nxt_sockaddr_cache_alloc() failed, the connection object wasn't destroyed properly, leaving the connection counter in an inconsistent state. Repeated, this condition lowered the connection capacity of the process and could eventually prevent it from accepting connections altogether. | |||||
2020-04-15 | Fixed memory leak occurring upon failure to accept a connection. | Igor Sysoev | 1 | -11/+10 | |
2020-04-15 | Fixed crash that occurs when idle connections are closed forcibly. | Igor Sysoev | 1 | -29/+45 | |
2018-05-30 | Fixed keep-alive hanging after reconfiguration. | Igor Sysoev | 1 | -3/+8 | |
2018-03-05 | Reduced number of critical log levels. | Valentin Bartenev | 1 | -8/+8 | |
2018-01-24 | Using size_t for the field width type of the "%*s" specifier. | Sergey Kandaurov | 1 | -1/+2 | |
2017-10-18 | Router: fixed segfault after configuration change. | Igor Sysoev | 1 | -1/+0 | |
2017-10-17 | Storing memory cache slot hint inside nxt_sockaddr_t. | Igor Sysoev | 1 | -3/+1 | |
2017-09-27 | Fixed building by modern GCC. | Igor Sysoev | 1 | -6/+3 | |
2017-09-27 | Event engine memory cache for nxt_sockaddr_t. | Igor Sysoev | 1 | -17/+5 | |
Introducing event engine memory cache and using the cache for nxt_sockaddr_t structures. | |||||
2017-09-14 | Fixed textual socket name lengths and Unix domain sockaddr length. | Igor Sysoev | 1 | -14/+16 | |
2017-07-13 | Using correct task for connection initialization. | Igor Sysoev | 1 | -2/+2 | |
2017-07-05 | Router: processing JSON configuration. | Igor Sysoev | 1 | -1/+1 | |
2017-06-20 | Using new memory pool implementation. | Igor Sysoev | 1 | -4/+14 | |
2017-06-14 | nxt_event_conn_... functions and structures have been renamed | Igor Sysoev | 1 | -0/+366 | |
to nxt_conn_... |