Home
last modified time | relevance | path

Searched refs:TCP_NODELAY (Results 1 – 18 of 18) sorted by relevance

/dragonfly/lib/libdmsg/
H A Dsubs.c106 setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof opt); in dmsg_connect()
/dragonfly/sys/netinet/
H A Dtcp.h156 #define TCP_NODELAY 0x01 /* don't delay send to coalesce packets */ macro
H A Dtcp_usrreq.c1574 case TCP_NODELAY: in tcp_ctloutput()
1577 case TCP_NODELAY: in tcp_ctloutput()
1671 case TCP_NODELAY: in tcp_ctloutput()
1730 case TCP_NODELAY: in tcp_ctloutmsg()
/dragonfly/crypto/libressl/crypto/bio/
H A Db_sock.c242 return (setsockopt(s, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on)) == 0); in BIO_set_tcp_ndelay()
/dragonfly/sbin/iscontrol/
H A Dfsm.c157 if(setsockopt(sess->soc, IPPROTO_TCP, TCP_NODELAY, &val, sizeof(val)) < 0) in tcpConnect()
169 if(setsockopt(sess->soc, IPPROTO_TCP, TCP_NODELAY, &val, sizeof(val)) < 0) in tcpConnect()
/dragonfly/sbin/dump/
H A Ddumprmt.c181 if (setsockopt(rmtape, IPPROTO_TCP, TCP_NODELAY, &on, sizeof (on)) < 0) in rmtgetconn()
/dragonfly/contrib/gdb-7/gdb/
H A Dser-tcp.c315 setsockopt (scb->fd, IPPROTO_TCP, TCP_NODELAY, in net_open()
/dragonfly/test/stress/webstress/
H A Dwebstress.c337 setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &one, sizeof(one)); in run_test()
/dragonfly/lib/libc/rpc/
H A Dclnt_generic.c394 _setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &one, in clnt_tli_create()
H A Dsvc_vc.c329 _setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, &len, sizeof (len)); in rendezvous_request()
/dragonfly/contrib/tnftp/src/
H A Dssl.c239 setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &v, sizeof(v)); in fetch_flush()
/dragonfly/sys/netproto/smb/
H A Dsmb_trantcp.c164 nb_setsockopt_int(so, IPPROTO_TCP, TCP_NODELAY, 1); in nb_connect_in()
/dragonfly/sbin/hammer2/
H A Dcmd_service.c267 setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof opt); in service_thread()
/dragonfly/crypto/openssh/
H A Dmisc.c168 if (getsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, &optlen) == -1) { in set_nodelay()
178 if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof opt) == -1) in set_nodelay()
/dragonfly/sys/vfs/nfs/
H A Dnfs_syscalls.c383 sopt.sopt_name = TCP_NODELAY; in nfssvc_addsock()
H A Dnfs_socket.c313 sopt.sopt_name = TCP_NODELAY; in nfs_connect()
/dragonfly/lib/libfetch/
H A Dhttp.c1753 setsockopt(conn->sd, IPPROTO_TCP, TCP_NODELAY, &val, in http_request_body()
/dragonfly/libexec/ftpd/
H A Dftpd.c553 if (setsockopt(0, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on)) < 0) in main()