HomeSort by relevance Sort by last modified time
    Searched refs:TCP_MSS (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/syslinux/core/lwip/src/include/
lwipopts.h 46 #define TCP_MSS 1460
48 #define TCP_SND_BUF (4*TCP_MSS)
  /external/syslinux/core/lwip/src/include/lwip/
opt.h 896 * (2 * TCP_MSS) for things to work well
899 #define TCP_WND (4 * TCP_MSS)
925 * TCP_MSS: TCP Maximum segment size. (default is 536, a conservative default,
931 #ifndef TCP_MSS
932 #define TCP_MSS 536
940 * Setting this to 1 enables code that checks TCP_MSS against the MTU of the
957 * as much as (2 * TCP_SND_BUF/TCP_MSS) for things to work.
960 #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1))/(TCP_MSS))
1000 * for transmission. The meaningful range is 0 to TCP_MSS. Som
    [all...]
tcp_impl.h 306 (((u32_t)TCP_MSS / 256) << 8) | \
307 (TCP_MSS & 255))
  /external/syslinux/core/lwip/src/core/
init.c 225 if (TCP_SND_BUF < 2 * TCP_MSS)
226 LWIP_PLATFORM_DIAG(("lwip_sanity_check: WARNING: TCP_SND_BUF must be at least as much as (2 * TCP_MSS) for things to work smoothly\n"));
227 if (TCP_SND_QUEUELEN < (2 * (TCP_SND_BUF/TCP_MSS)))
228 LWIP_PLATFORM_DIAG(("lwip_sanity_check: WARNING: TCP_SND_QUEUELEN must be at least as much as (2 * TCP_SND_BUF/TCP_MSS) for things to work\n"));
235 if (TCP_WND < TCP_MSS)
tcp.c 712 /* As initial send MSS, we use TCP_MSS but limit it to 536.
714 pcb->mss = (TCP_MSS > 536) ? 536 : TCP_MSS;
    [all...]
tcp_in.c     [all...]
tcp_out.c 229 alloc = TCP_MSS;
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/netinet/
tcp.h 113 #define TCP_MSS 536
  /external/syslinux/gpxe/src/include/gpxe/
tcp.h 308 #define TCP_MSS 1460
  /external/iproute2/include/netinet/
tcp.h 162 # define TCP_MSS 512
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/netinet/
tcp.h 164 # define TCP_MSS 512
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/netinet/
tcp.h 164 # define TCP_MSS 512
  /external/netperf/doc/examples/
packet_byte_script 13 # teach it about processor affinity and the TCP_MSS test
70 MSS=`$NETPERF_CMD -H $REM_HOST -t TCP_MSS -P 0 -v 0`
  /external/webrtc/webrtc/base/
virtualsocketserver.cc 49 const uint32_t TCP_MSS = 1400; // Maximum segment size
840 std::min<size_t>(available, TCP_MSS - TCP_HEADER_SIZE);
    [all...]
  /external/syslinux/gpxe/src/net/
tcp.c 469 mssopt->mss = htons ( TCP_MSS );
  /external/syslinux/core/lwip/src/api/
sockets.c 770 if ((size > TCP_SND_BUF) || ((size / TCP_MSS) > TCP_SND_QUEUELEN)) {
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
zerrors_darwin_386.go     [all...]
zerrors_darwin_amd64.go     [all...]
zerrors_darwin_arm.go     [all...]
zerrors_darwin_arm64.go     [all...]
zerrors_dragonfly_amd64.go     [all...]
zerrors_freebsd_386.go     [all...]
zerrors_freebsd_amd64.go     [all...]
zerrors_freebsd_arm.go     [all...]
zerrors_linux_386.go     [all...]

Completed in 839 milliseconds

1 2 3