the SO_REUSEPORT option not works on macOS with libuv.
uv_loop_init
uv_tcp_init_ex
uv_fileno // get fd
int option_value = 1; setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &option_value, sizeof (int)
uv_tcp_bind
uv_thread_create 4
I see 4 same address and port binding at 0.0.0.0:8080, but only thread1's connection_cb works, so can I use this option with my program? thx.