There was an error while loading. Please reload this page.
ea12b81
🔧 only print socket buffer maxed out errs from C if it matters
333c23c
🔧 🔩 backoff full kernel socket buffers starting at a quarter of a millisecond
9f48e83
retry sendto() if recv() reads are too slow
sendto()
recv()
55567d4
instead of starting a SNDBUF int optval at the size of a system limit, start at zero.
SNDBUF
int optval
makes send operations more efficient when only small buffers are used
f5f3682
pass a unix datagram socket path and a buffer like:
const sendto = require('sendto') const str = 'some buffer bigger than this' sendto('/tmp/mysocketpath', Buffer(str) )