We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
listen for SOCK_DGRAM Unix domain socket
The text was updated successfully, but these errors were encountered:
There is already some support using unix-dgram: and abstract-dgram:. You specify two addresses, one should exist, the other should not exist.
unix-dgram:
abstract-dgram:
Example:
A$ socat - unix-sendto:/tmp/send.sock,bind=/tmp/receive.sock B$ websocat -b unix-dgram:/tmp/send.sock:/tmp/receive.sock ws://ws.vi-server.org/mirror A$ 123 123 ABCDE ABCDE
This mode is inconvenient and was just added for completeness. What are advantages compared to seqpacket: / seqpacket-listen:?
seqpacket:
seqpacket-listen:
Sorry, something went wrong.
There is already some support using unix-dgram: and abstract-dgram:. You specify two addresses, one should exist, the other should not exist. Example: A$ socat - unix-sendto:/tmp/send.sock,bind=/tmp/receive.sock B$ websocat -b unix-dgram:/tmp/send.sock:/tmp/receive.sock ws://ws.vi-server.org/mirror A$ 123 123 ABCDE ABCDE This mode is inconvenient and was just added for completeness. What are advantages compared to seqpacket: / seqpacket-listen:?
i wonder if this is a bug
websocat version: 1.13.0
linux version ok:
# ./websocat.aarch64-unknown-linux-musl -b - unix-dgram:/tmp/unix.sock:/tmp/unix.sock # ./websocat.aarch64-unknown-linux-musl -b unix-dgram:/tmp/unix2.sock:/tmp/unix2.sock -
android version fail:
# ./websocat.aarch64-linux-android -b - unix-dgram:/tmp/android.sock:/tmp/android.sock websocat: No such file or directory (os error 2) websocat: error running # ./websocat.aarch64-linux-android -b unix-dgram:/tmp/android.sock:/tmp/android.sock - websocat: No such file or directory (os error 2) websocat: error running
No branches or pull requests
listen for SOCK_DGRAM Unix domain socket
The text was updated successfully, but these errors were encountered: