From 0ab620845f87c9ed1ab19cdedead7c7933f72bce Mon Sep 17 00:00:00 2001 From: ksherlock Date: Tue, 16 Jun 2015 14:26:41 -0400 Subject: [PATCH] fixup readme --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 431a514..6e19827 100644 --- a/README.md +++ b/README.md @@ -81,12 +81,19 @@ of `sendto`. `ioctl` -- support for `FIONREAD` (bytes available to read) and `FIONBIO` (set/clear non-blocking). +`setsockopt` -- `SO_SNDLOWAT`, `SO_RCVLOWAT`, `SO_SNDTIMEO`, and `SO_RCVTIMEO` are supported. +`SO_OOBINLINE` errors unless it's true. +`SO_DEBUG`, `SO_REUSEADDR`, `SO_REUSEPORT`, `SO_KEEPALIVE` set a flag but have no other effect. + + + +`getsockopt` -- support for `SO_TYPE`, `SO_DEBUG`, `SO_REUSEADDR`, `SO_REUSEPORT`, `SO_KEEPALIVE`, +`SO_OOBINLINE`, `SO_SNDLOWAT`, `SO_RCVLOWAT`, `SO_SNDTIMEO`, `SO_RCVTIMEO`, `SO_NREAD`, `SO_NWRITE` + `getsockopt` -- support for `SO_OOBINLINE`, `SO_SNDLOWAT`, `SO_RCVLOWAT`, `SO_SNDTIMEO`, `SO_RCVTIMEO`, `SNDLOWAT` and `SNDTIMEO` set flags but don not have any other effect. `OOBINLINE` is only be supported when true. -`getsockopt` -- support for `SO_TYPE`, `SO_OOBINLINE`, `SO_SNDLOWAT`, `SO_RCVLOWAT`, -`SO_SNDTIMEO` Not (yet) supported: --------------------