HomeSort by relevance Sort by last modified time
    Searched refs:mss (Results 176 - 195 of 195) sorted by null

1 2 3 4 5 6 78

  /external/syslinux/core/lwip/src/include/lwip/
tcp.h 203 u16_t mss; /* maximum segment size */ member in struct:tcp_pcb
323 #define tcp_mss(pcb) (((pcb)->flags & TF_TIMESTAMP) ? ((pcb)->mss - 12) : (pcb)->mss)
tcp_impl.h 80 * - the only unsent segment is at least pcb->mss bytes long (or there is more
81 * than one unsent segment - with lwIP, this can happen although unsent->len < mss)
87 ((tpcb)->unsent->len >= (tpcb)->mss))) \
292 #define TF_SEG_OPTS_MSS (u8_t)0x01U /* Include MSS option. */
303 /** This returns a TCP header option for MSS in an u32_t */
  /external/syslinux/gpxe/src/include/gpxe/
tcp.h 47 /** TCP MSS option */
51 uint16_t mss; member in struct:tcp_mss_option
54 /** Code for the TCP MSS option */
76 /** MSS option, if present */
301 * Advertised TCP MSS
  /external/syslinux/core/lwip/src/core/
tcp.c 547 if (TCP_SEQ_GEQ(new_right_edge, pcb->rcv_ann_right_edge + LWIP_MIN((TCP_WND / 2), pcb->mss))) {
712 /* As initial send MSS, we use TCP_MSS but limit it to 536.
713 The send MSS is updated when an MSS option is received. */
714 pcb->mss = (TCP_MSS > 536) ? 536 : TCP_MSS;
716 pcb->mss = tcp_eff_send_mss(pcb->mss, ipaddr);
719 pcb->ssthresh = pcb->mss * 10;
726 /* Send a SYN together with the MSS option. */
819 if (pcb->ssthresh < (pcb->mss << 1))
    [all...]
tcp_out.c 228 /* always create MSS-sized pbufs */
427 space = pcb->mss - (last_unsent->len + unsent_optlen);
520 u16_t max_len = pcb->mss - optlen;
530 if ((p = tcp_pbuf_prealloc(PBUF_TRANSPORT, seglen + optlen, pcb->mss, &oversize, pcb, apiflags, queue == NULL)) == NULL) {
859 /* NB. MSS option is only sent on SYNs, so ignore it here */
    [all...]
  /external/toybox/toys/net/
netstat.c 279 int flags, ref, use, metric, mss, win, irtt; local
288 !(toys.optflags&FLAG_e) ? " MSS Window irtt" : "Metric Ref Use");
294 &gate, &flags, &ref, &use, &metric, &mask, &mss, &win, &irtt))
328 printf("%5d %-5d %6d %s\n", mss, win, irtt, iface);
  /external/toybox/toys/pending/
route.c 13 * mod dyn reinstate metric netmask gw mss window irtt dev
133 int flags, ref, use, metric, mss, win, irtt, items; local
140 (toys.optflags & FLAG_e)? " MSS Window irtt" : "Metric Ref Use");
144 &gate, &flags, &ref, &use, &metric, &mask, &mss, &win, &irtt)) == 11)
162 if (toys.optflags & FLAG_e) xprintf("%5d %-5d %6d %s\n", mss, win, irtt, iface);
189 * used to get the params like: metric, netmask, gw, mss, window, irtt, dev and their values.
221 } else if (!strcmp(*argv, "mss")) {
  /external/fio/engines/
net.c 48 unsigned int mss; member in struct:netio_options
198 .name = "mss",
201 .off1 = offsetof(struct netio_options, mss),
267 unsigned int mss; local
270 if (!o->mss || !is_tcp(o))
273 mss = o->mss;
274 ret = setsockopt(fd, IPPROTO_TCP, TCP_MAXSEG, (void *) &mss,
275 sizeof(mss));
  /external/fio/
configure 1365 if test "$mss" != "yes" ; then
1366 mss="no"
1381 mss="yes"
1383 echo "TCP_MAXSEG $mss"
    [all...]
  /external/netperf/src/
nettest_sdp.c 144 get_sdp_info(int socket, int * mss)
154 (char *)mss,
160 *mss = -1;
163 *mss = -1;
    [all...]
nettest_omni.c     [all...]
nettest_bsd.c 29 /* send_tcp_mss() just report the mss */
586 get_tcp_info(SOCKET socket, int *mss)
596 (char *)mss,
602 *mss = -1;
605 *mss = -1;
611 set_tcp_mss(SOCKET socket, int mss) {
619 (const char *)&mss,
    [all...]
nettest_sctp.c 150 get_sctp_info( int socket, int *mss )
158 mss,
    [all...]
  /external/iproute2/ip/
iproute.c 951 unsigned mss; local
957 if (get_unsigned(&mss, *argv, 0))
958 invarg("\"mss\" value is invalid\n", *argv);
959 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_ADVMSS, mss);
    [all...]
  /external/iproute2/misc/
ss.c 765 int mss; member in struct:tcpstat
    [all...]
  /external/syslinux/gpxe/src/net/
tcp.c 469 mssopt->mss = htons ( TCP_MSS );
  /external/syslinux/gpxe/src/drivers/net/e1000/
e1000_hw.h 785 uint16_t mss; /* Maximum segment size */ member in struct:e1000_context_desc::__anon34471::__anon34472
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/x509/
x509_test.go     [all...]
  /prebuilts/go/linux-x86/src/crypto/x509/
x509_test.go     [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.sat4j.core_2.3.5.v20130525.jar 

Completed in 1211 milliseconds

1 2 3 4 5 6 78