Re: Socket missing option: SO_REUSEPORT

2017-05-21 Thread Kevin Brogan via Digitalmars-d
On Wednesday, 21 December 2016 at 16:49:53 UTC, Damian wrote: SO_REUSEPORT is not supported on Windows. Is is supported on linux. On Windows the behavior of SO_REUSEPORT is included in SO_REUSEADDR. I submitted an issue to get this fixed for Linux.

Re: Socket missing option: SO_REUSEPORT

2016-12-21 Thread Damian via Digitalmars-d
On Wednesday, 21 December 2016 at 13:01:53 UTC, Benjiro wrote: Just check the socket code and there is a small feature missing: enum SocketOption: int { DEBUG =SO_DEBUG,/// Record debugging information BROADCAST =SO_BROADCAST,/// Allow

Re: Socket missing option: SO_REUSEPORT

2016-12-21 Thread Madaz Hill via Digitalmars-d
On Wednesday, 21 December 2016 at 13:01:53 UTC, Benjiro wrote: I don't think this needs weeks of discussion ;) No discussion needed at all. You could simply file an issue here: https://issues.dlang.org/, or submit a PR.

Socket missing option: SO_REUSEPORT

2016-12-21 Thread Benjiro via Digitalmars-d
Just check the socket code and there is a small feature missing: enum SocketOption: int { DEBUG =SO_DEBUG,/// Record debugging information BROADCAST =SO_BROADCAST,/// Allow transmission of broadcast messages REUSEADDR =