July 07, 2013
Hello!

I try to create a RDM socket, but all my attempts fails by "Unable to create socket: Socket type not supported" error.
How can I create a RDM socket using std.socket module?

Thanks.
July 07, 2013
On Sunday, 7 July 2013 at 10:53:09 UTC, Andrey Derzhavin wrote:
> Hello!
>
> I try to create a RDM socket, but all my attempts fails by "Unable to create socket: Socket type not supported" error.
> How can I create a RDM socket using std.socket module?
>
> Thanks.


Not all systems support RDM and/or it is not fully implemented in D even though the docs appear to say it is. Last I checked not even unix sockets worked, which are pretty basic.

--rt