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

1 2

  /bionic/libc/kernel/uapi/linux/netfilter/
xt_TCPMSS.h 23 __u16 mss; member in struct:xt_tcpmss_info
xt_SYNPROXY.h 30 __u16 mss; member in struct:xt_synproxy_info
xt_osf.h 53 __u16 ss, mss; member in struct:xt_osf_user_finger
  /external/iptables/include/linux/netfilter/
xt_TCPMSS.h 7 __u16 mss; member in struct:xt_tcpmss_info
xt_SYNPROXY.h 13 __u16 mss; member in struct:xt_synproxy_info
xt_osf.h 49 * Wildcard MSS (kind of).
51 * of the MSS and window sizes.
71 __u16 ss, mss; member in struct:xt_osf_user_finger
108 * Initial window size option state machine: multiple of mss, mtu or
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_TCPMSS.h 8 __u16 mss; member in struct:xt_tcpmss_info
xt_SYNPROXY.h 16 __u16 mss; member in struct:xt_synproxy_info
xt_osf.h 51 * Wildcard MSS (kind of).
53 * of the MSS and window sizes.
73 __u16 ss, mss; member in struct:xt_osf_user_finger
110 * Initial window size option state machine: multiple of mss, mtu or
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
xt_TCPMSS.h 7 __u16 mss; member in struct:xt_tcpmss_info
xt_osf.h 49 * Wildcard MSS (kind of).
51 * of the MSS and window sizes.
71 __u16 ss, mss; member in struct:xt_osf_user_finger
108 * Initial window size option state machine: multiple of mss, mtu or
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
MulticastSocketTest.java 138 MulticastSocket mss = new MulticastSocket(0); local
140 assertTrue(mss.getInterface().isAnyLocalAddress());
146 mss.setInterface(firstAddress);
148 firstAddress, mss.getInterface());
150 mss.close();
151 mss = new MulticastSocket(0);
152 mss.setNetworkInterface(ipv4NetworkInterface);
154 ipv4NetworkInterface, NetworkInterface.getByInetAddress(mss.getInterface()));
157 mss.close();
165 MulticastSocket mss = new MulticastSocket(0) local
209 MulticastSocket mss = new MulticastSocket(); local
221 MulticastSocket mss = new MulticastSocket(); local
265 MulticastSocket mss = new MulticastSocket(0); local
278 MulticastSocket mss = new MulticastSocket(0); local
291 MulticastSocket mss = new MulticastSocket(0); local
478 MulticastSocket mss = new MulticastSocket(0); local
506 MulticastSocket mss = new MulticastSocket(0); local
523 MulticastSocket mss = new MulticastSocket(0); local
536 MulticastSocket mss = new MulticastSocket(0); local
549 MulticastSocket mss = new MulticastSocket(0); local
648 MulticastSocket mss = new MulticastSocket(); local
681 MulticastSocket mss = new MulticastSocket(); local
695 MulticastSocket mss = new MulticastSocket(); local
709 MulticastSocket mss = new MulticastSocket(); local
768 MulticastSocket mss = new MulticastSocket(); local
780 MulticastSocket mss = new MulticastSocket(); local
    [all...]
  /external/iptables/extensions/
libxt_TCPMSS.c 18 struct xt_tcpmss_info mss; member in struct:mssinfo
25 " --set-mss value explicitly set MSS option to specified value\n"
26 " --clamp-mss-to-pmtu automatically clamp MSS value to (path_MTU - %d)\n",
41 {.name = "set-mss", .id = O_SET_MSS, .type = XTTYPE_UINT16,
43 .flags = XTOPT_PUT, XTOPT_POINTER(struct xt_tcpmss_info, mss)},
44 {.name = "clamp-mss-to-pmtu", .id = O_CLAMP_MSS, .type = XTTYPE_NONE},
49 {.name = "set-mss", .id = O_SET_MSS, .type = XTTYPE_UINT16,
51 .flags = XTOPT_PUT, XTOPT_POINTER(struct xt_tcpmss_info, mss)},
    [all...]
libxt_SYNPROXY.c 30 " --mss value Set MSS value\n"
38 {.name = "mss", .id = O_MSS, .type = XTTYPE_UINT32, },
61 info->mss = cb->val.u32;
87 printf("mss %u ", info->mss);
104 printf(" --mss %u", info->mss);
  /prebuilts/go/darwin-x86/test/
map.go 54 mss := make(map[string]string)
90 mss[s] = s10
91 mss[s] = s10
122 if len(mss) != count {
123 panic(fmt.Sprintf("len(mss) = %d\n", len(mss)))
171 if mss[s] != s10 {
172 panic(fmt.Sprintf("mss[%s] = %g\n", s, mss[s]))
265 _, b := mss[s
    [all...]
  /prebuilts/go/linux-x86/test/
map.go 54 mss := make(map[string]string)
90 mss[s] = s10
91 mss[s] = s10
122 if len(mss) != count {
123 panic(fmt.Sprintf("len(mss) = %d\n", len(mss)))
171 if mss[s] != s10 {
172 panic(fmt.Sprintf("mss[%s] = %g\n", s, mss[s]))
265 _, b := mss[s
    [all...]
  /external/scapy/scapy/modules/
p0f.py 152 mss = -1
159 if option[0] == "MSS":
161 mss = option[1]
195 if mss != -1:
196 if mss != 0 and win % mss == 0:
197 win = "S" + str(win/mss)
198 elif win % (mss + 40) == 0:
199 win = "T" + str(win/(mss+40))
393 # options (we start with options because of MSS)
    [all...]
  /external/syslinux/core/lwip/src/core/
tcp_in.c 500 npcb->mss = tcp_eff_send_mss(npcb->mss, &(npcb->remote_ip));
505 /* Send a SYN|ACK together with the MSS option. */
640 pcb->mss = tcp_eff_send_mss(pcb->mss, &(pcb->remote_ip));
643 /* Set ssthresh again after changing pcb->mss (already set in tcp_connect
644 * but for the default value of pcb->mss) */
645 pcb->ssthresh = pcb->mss * 10;
647 pcb->cwnd = ((pcb->cwnd == 1) ? (pcb->mss * 2) : pcb->mss);
1493 u16_t mss; local
    [all...]
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/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)
  /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/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));

Completed in 1053 milliseconds

1 2