JoeStrout / miniscript

source code of both C# and C++ implementations of the MiniScript scripting language
MIT License
280 stars 64 forks source link

Unix domain sockets #152

Open marcgurevitx opened 6 months ago

marcgurevitx commented 6 months ago

Module uds.

API:

s = uds.createServer(path, backlog)
c = s.accept(timeout)
c = uds.connect(path, timeout)
c.send rawData  // or string
rawData = c.receive(bytes, timeout)
c.close
s.close

Review would be super double plus appreciated.