QLocalSocket on Unix
-
https://bugreports.qt.nokia.com/browse/QTBUG-13570 suggests it's not available. QLocalSocket is meant to provide the same behavior cross-platform. This is not (easily) possible with DGRAM.
Why would you need DRAM on local sockets anyway?
-
Not that I am aware of. I did some research out of curiosity, and according to http://www.thomasstover.com/uds.html there is no real benefit for DGRAM on Unix Domain Sockets (as opposed to TCP and UDP obviously). If you still want to send only some (very) small datagrams, or have some special design scenarios (read the link for an example), you will have to resort to using the native socket API for the time being.
[EDIT: fixed link, Volker]
-
http://www.thomasstover.com/uds.html (devnet seems to include the ',' in the link).