Julia UnetSocket API to connect to UnetStack.
In Julia REPL:
julia> # press "]" to enter package manager
pkg> add UnetSocketsIn Julia REPL:
julia> using UnetSockets
julia> sock = UnetSocket("localhost", 1100);
julia> send(sock, "hello world!", 2)
true
julia> close(sock)For more details, see help (press "?" in Julia REPL) for UnetSockets.