You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This fixes a memory leak and increases the backlog of uv_listen to
SOMAXCONN, such that connections are put in a queue when the previous
acceptor is not yet finished (this is the case with a timeout, which
triggers the connects at the same time)
Another memory leak remains which I couldn't find.
```
==130847== 128 bytes in 1 blocks are definitely lost in loss record 1 of 1
==130847== at 0x48577A8: malloc (vg_replace_malloc.c:446)
==130847== by 0x4003F90: ??? (in server_client)
==130847== by 0x4004499: ??? (in server_client)
==130847== by 0x4004557: run (in server_client)
==130847== by 0x4004A1C: spawn_4055 (in server_client)
==130847== by 0x40044F6: resume_Int (in server_client)
==130847== by 0x4002BA0: c_tcp_listen (io.c:367)
==130847== by 0x4004B65: listen_4331 (in server_client)
==130847== by 0x400CA5D: effektMain (in server_client)
==130847== by 0x4003D60: main (main.c:37)
```
0 commit comments