Skip to content

org-arl/UnetSockets.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CI
[ UnetStack 3.1.0 ]

UnetStack Julia API

Julia UnetSocket API to connect to UnetStack.

Installation

In Julia REPL:

julia> # press "]" to enter package manager
pkg> add UnetSockets

Example usage

In 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.