Is there support for creating Unix domain sockets with SOCK_SEQPACKET parameter in boost asio? I didn't found any in the official reference, but maybe there are workarounds?
Well, I found a thing, that had been added in boost 1.54.0. It is called generic::seq_packet_protocol. When initialized as seq_packet_protocol(AF_UNIX, 0))
it produces an object, that can be used to open sockets, create acceptors and endpoints. So, SCTP could be implemented the same way.