Creation of server sockets with AF_UNIX SOCK_SEQPACKET type #143
Replies: 4 comments
|
SOCK_SEQPACKET behaves more like SOCK_DGRAM; it's packet-based but unlike DGRAM the order is guaranteed. Can you try |
|
Thans for the response, that's about where I was but I can't find a method that calls accept()? |
|
Yeah, that looks like it's not implemented yet :-D |
|
OK, please try latest from In commit 5d178b0, I've added the necessary support for See |
Uh oh!
There was an error while loading. Please reload this page.
Hi, I've been trying to create a server socket that will listen and accept connections on the socket type as given in the title but have been running into some issues. I'm not sure this is supported today? It seems like maybe I could wrestle myself out of it by using raw fds but that seems a bit heavy handed. Is there something I'm missing?
All reactions