aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstddjb/socket_tcpnodelay.c
blob: 8880af4297d9ee9e44d8133703b8ee87bab9fb4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* ISC license. */

#include <skalibs/nonposix.h>

#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/tcp.h>

#include <skalibs/socket.h>

int socket_tcpnodelay (int s)
{
  static int const val = 1 ;
  return setsockopt(s, IPPROTO_TCP, TCP_NODELAY, &val, sizeof(int)) ;
}