We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
connect
listen
1 parent d16f480 commit ec9bb1cCopy full SHA for ec9bb1c
stdlib/Sockets/src/PipeServer.jl
@@ -70,6 +70,9 @@ end
70
listen(path::AbstractString) -> PipeServer
71
72
Create and listen on a named pipe / UNIX domain socket.
73
+
74
+!!! note
75
+ Path length on Unix is limited to somewhere between 92 and 108 bytes (cf. `man unix`).
76
"""
77
function listen(path::AbstractString)
78
sock = PipeServer()
@@ -93,5 +96,8 @@ end
93
96
connect(path::AbstractString) -> PipeEndpoint
94
97
95
98
Connect to the named pipe / UNIX domain socket at `path`.
99
100
101
102
103
connect(path::AbstractString) = connect(PipeEndpoint(), path)
0 commit comments