summaryrefslogtreecommitdiff
path: root/netlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'netlib.c')
-rw-r--r--netlib.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/netlib.c b/netlib.c
index e0ba59a0..1b165256 100644
--- a/netlib.c
+++ b/netlib.c
@@ -65,7 +65,9 @@ int netlib_connectsock(const char *host, const char *service, const char *protoc
#ifdef IPTOS_LOWDELAY
opt = IPTOS_LOWDELAY;
+ /*@ -unrecog @*/
(void)setsockopt(s, IPPROTO_IP, IP_TOS, &opt, sizeof opt);
+ /*@ +unrecog @*/
#endif
#ifdef TCP_NODELAY
if (type == SOCK_STREAM)