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 |
Beta Was this translation helpful? Give feedback.
-
Thans for the response, that's about where I was but I can't find a method that calls accept()? |
Beta Was this translation helpful? Give feedback.
-
Yeah, that looks like it's not implemented yet :-D |
Beta Was this translation helpful? Give feedback.
-
OK, please try latest from In commit 5d178b0, I've added the necessary support for See |
Beta Was this translation helpful? Give feedback.
-
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?
Beta Was this translation helpful? Give feedback.
All reactions