Skip to content

Releases: reqshark/sendto

v1.0.3

Choose a tag to compare

@reqshark reqshark released this 12 May 20:13

🔧 only print socket buffer maxed out errs from C if it matters

v1.0.2

Choose a tag to compare

@reqshark reqshark released this 12 May 03:14

🔧 🔩 backoff full kernel socket buffers starting at a quarter of a millisecond

v1.0.1

Choose a tag to compare

@reqshark reqshark released this 11 May 04:08

retry sendto() if recv() reads are too slow

v1.0.0

Choose a tag to compare

@reqshark reqshark released this 08 May 10:33

instead of starting a SNDBUF int optval at the size of a system limit, start at zero.

makes send operations more efficient when only small buffers are used

v0.0.2

Choose a tag to compare

@reqshark reqshark released this 06 May 15:32

sendto(string, buffer)

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) )