Home
last modified time | relevance | path

Searched refs:tcpinfo (Results 1 – 25 of 264) sorted by relevance

1234567891011

/dports/net/wangle/wangle-2021.12.27.00/wangle/acceptor/
H A DTransportInfo.cpp38 rto = tcpinfo.tcpi_rto * 1000; in initWithSocket()
40 mss = tcpinfo.tcpi_maxseg; in initWithSocket()
50 mss = tcpinfo.tcpi_snd_mss; in initWithSocket()
58 rto = tcpinfo.tcpi_rto; in initWithSocket()
60 mss = tcpinfo.tcpi_snd_mss; in initWithSocket()
61 cwnd = tcpinfo.tcpi_snd_cwnd; in initWithSocket()
137 tcp_info tcpinfo; in readRTT() local
143 return tcpinfo.tcpi_rtt; in readRTT()
145 return tcpinfo.tcpi_srtt; in readRTT()
158 tcp_info* tcpinfo, in readTcpInfo() argument
[all …]
/dports/www/trafficserver/trafficserver-9.1.1/doc/locale/ja/LC_MESSAGES/admin-guide/plugins/
H A Dtcpinfo.en.po32 #: ../../admin-guide/plugins/tcpinfo.en.rst:50
36 #: ../../admin-guide/plugins/tcpinfo.en.rst:51
40 #: ../../admin-guide/plugins/tcpinfo.en.rst:49
44 #: ../../admin-guide/plugins/tcpinfo.en.rst:67
45 #: ../../admin-guide/plugins/tcpinfo.en.rst:79
49 #: ../../admin-guide/plugins/tcpinfo.en.rst:45
53 #: ../../admin-guide/plugins/tcpinfo.en.rst:30
57 #: ../../admin-guide/plugins/tcpinfo.en.rst:71
58 #: ../../admin-guide/plugins/tcpinfo.en.rst:83
62 #: ../../admin-guide/plugins/tcpinfo.en.rst:73
[all …]
/dports/security/dropbear/dropbear-2020.81/
H A Dtcp-accept.c42 m_free(tcpinfo->sendaddr); in cleanup_tcp()
43 m_free(tcpinfo->listenaddr); in cleanup_tcp()
44 m_free(tcpinfo->request_listenaddr); in cleanup_tcp()
45 m_free(tcpinfo); in cleanup_tcp()
81 if (tcpinfo->tcp_type == direct) { in tcp_acceptor()
84 addr = tcpinfo->sendaddr; in tcp_acceptor()
85 port = tcpinfo->sendport; in tcp_acceptor()
87 dropbear_assert(tcpinfo->tcp_type == forwarded); in tcp_acceptor()
90 addr = tcpinfo->request_listenaddr; in tcp_acceptor()
91 port = tcpinfo->listenport; in tcp_acceptor()
[all …]
H A Dsvr-tcpfwd.c137 struct TCPListener tcpinfo; in svr_cancelremotetcp() local
149 tcpinfo.sendaddr = NULL; in svr_cancelremotetcp()
150 tcpinfo.sendport = 0; in svr_cancelremotetcp()
151 tcpinfo.listenaddr = bindaddr; in svr_cancelremotetcp()
152 tcpinfo.listenport = port; in svr_cancelremotetcp()
197 tcpinfo->sendaddr = NULL; in svr_remotetcpreq()
198 tcpinfo->sendport = 0; in svr_remotetcpreq()
199 tcpinfo->listenport = port; in svr_remotetcpreq()
201 tcpinfo->tcp_type = forwarded; in svr_remotetcpreq()
206 tcpinfo->listenaddr = NULL; in svr_remotetcpreq()
[all …]
H A Dcli-tcpfwd.c112 struct TCPListener* tcpinfo = NULL; in cli_localtcp() local
120 tcpinfo->sendaddr = m_strdup(remoteaddr); in cli_localtcp()
121 tcpinfo->sendport = remoteport; in cli_localtcp()
125 tcpinfo->listenaddr = m_strdup(listenaddr); in cli_localtcp()
130 tcpinfo->listenaddr = m_strdup(""); in cli_localtcp()
132 tcpinfo->listenaddr = m_strdup("localhost"); in cli_localtcp()
135 tcpinfo->listenport = listenport; in cli_localtcp()
137 tcpinfo->chantype = &cli_chan_tcplocal; in cli_localtcp()
138 tcpinfo->tcp_type = direct; in cli_localtcp()
140 ret = listen_tcpfwd(tcpinfo, NULL); in cli_localtcp()
[all …]
/dports/net/wireshark-lite/wireshark-3.6.1/epan/dissectors/
H A Dpacket-iwarp-mpa.c247 fpdu_total_length(struct tcpinfo *tcpinfo) in fpdu_total_length() argument
251 if (tcpinfo->seq < tcpinfo->nxtseq) { in fpdu_total_length()
252 size = tcpinfo->nxtseq - tcpinfo->seq; in fpdu_total_length()
255 if (tcpinfo->seq >= tcpinfo->nxtseq) { in fpdu_total_length()
256 size = tcpinfo->nxtseq + (TCP_MAX_SEQ - tcpinfo->seq); in fpdu_total_length()
590 struct tcpinfo *tcpinfo, guint8 endpoint) in dissect_fpdu_markers() argument
760 struct tcpinfo *tcpinfo; in dissect_iwarp_mpa() local
766 tcpinfo = (struct tcpinfo *)data; in dissect_iwarp_mpa()
900 struct tcpinfo *tcpinfo = NULL; in dissect_iwarp_mpa_heur() local
905 tcpinfo = (struct tcpinfo *)data; in dissect_iwarp_mpa_heur()
[all …]
H A Dpacket-rlogin.c171 struct tcpinfo *tcpinfo) in rlogin_display() argument
199 if (tcpinfo && IS_TH_URG(tcpinfo->flags) && /* if urgent pointer set */ in rlogin_display()
200 length >= tcpinfo->urgent_pointer) /* and it's in this frame */ in rlogin_display()
203 int urgent_offset = tcpinfo->urgent_pointer - 1; in rlogin_display()
383 struct tcpinfo *tcpinfo = (struct tcpinfo *)data; in dissect_rlogin() local
434 if (tcpinfo && IS_TH_URG(tcpinfo->flags) && length >= tcpinfo->urgent_pointer) in dissect_rlogin()
472 rlogin_display(hash_info, tvb, pinfo, tree, tcpinfo); in dissect_rlogin()
/dports/net/wireshark/wireshark-3.6.1/epan/dissectors/
H A Dpacket-iwarp-mpa.c247 fpdu_total_length(struct tcpinfo *tcpinfo) in fpdu_total_length() argument
251 if (tcpinfo->seq < tcpinfo->nxtseq) { in fpdu_total_length()
252 size = tcpinfo->nxtseq - tcpinfo->seq; in fpdu_total_length()
255 if (tcpinfo->seq >= tcpinfo->nxtseq) { in fpdu_total_length()
256 size = tcpinfo->nxtseq + (TCP_MAX_SEQ - tcpinfo->seq); in fpdu_total_length()
590 struct tcpinfo *tcpinfo, guint8 endpoint) in dissect_fpdu_markers() argument
760 struct tcpinfo *tcpinfo; in dissect_iwarp_mpa() local
766 tcpinfo = (struct tcpinfo *)data; in dissect_iwarp_mpa()
900 struct tcpinfo *tcpinfo = NULL; in dissect_iwarp_mpa_heur() local
905 tcpinfo = (struct tcpinfo *)data; in dissect_iwarp_mpa_heur()
[all …]
H A Dpacket-rlogin.c171 struct tcpinfo *tcpinfo) in rlogin_display() argument
199 if (tcpinfo && IS_TH_URG(tcpinfo->flags) && /* if urgent pointer set */ in rlogin_display()
200 length >= tcpinfo->urgent_pointer) /* and it's in this frame */ in rlogin_display()
203 int urgent_offset = tcpinfo->urgent_pointer - 1; in rlogin_display()
383 struct tcpinfo *tcpinfo = (struct tcpinfo *)data; in dissect_rlogin() local
434 if (tcpinfo && IS_TH_URG(tcpinfo->flags) && length >= tcpinfo->urgent_pointer) in dissect_rlogin()
472 rlogin_display(hash_info, tvb, pinfo, tree, tcpinfo); in dissect_rlogin()
/dports/net/tshark-lite/wireshark-3.6.1/epan/dissectors/
H A Dpacket-iwarp-mpa.c247 fpdu_total_length(struct tcpinfo *tcpinfo) in fpdu_total_length() argument
251 if (tcpinfo->seq < tcpinfo->nxtseq) { in fpdu_total_length()
252 size = tcpinfo->nxtseq - tcpinfo->seq; in fpdu_total_length()
255 if (tcpinfo->seq >= tcpinfo->nxtseq) { in fpdu_total_length()
256 size = tcpinfo->nxtseq + (TCP_MAX_SEQ - tcpinfo->seq); in fpdu_total_length()
590 struct tcpinfo *tcpinfo, guint8 endpoint) in dissect_fpdu_markers() argument
760 struct tcpinfo *tcpinfo; in dissect_iwarp_mpa() local
766 tcpinfo = (struct tcpinfo *)data; in dissect_iwarp_mpa()
900 struct tcpinfo *tcpinfo = NULL; in dissect_iwarp_mpa_heur() local
905 tcpinfo = (struct tcpinfo *)data; in dissect_iwarp_mpa_heur()
[all …]
/dports/net/tshark/wireshark-3.6.1/epan/dissectors/
H A Dpacket-iwarp-mpa.c247 fpdu_total_length(struct tcpinfo *tcpinfo) in fpdu_total_length() argument
251 if (tcpinfo->seq < tcpinfo->nxtseq) { in fpdu_total_length()
252 size = tcpinfo->nxtseq - tcpinfo->seq; in fpdu_total_length()
255 if (tcpinfo->seq >= tcpinfo->nxtseq) { in fpdu_total_length()
256 size = tcpinfo->nxtseq + (TCP_MAX_SEQ - tcpinfo->seq); in fpdu_total_length()
590 struct tcpinfo *tcpinfo, guint8 endpoint) in dissect_fpdu_markers() argument
760 struct tcpinfo *tcpinfo; in dissect_iwarp_mpa() local
766 tcpinfo = (struct tcpinfo *)data; in dissect_iwarp_mpa()
900 struct tcpinfo *tcpinfo = NULL; in dissect_iwarp_mpa_heur() local
905 tcpinfo = (struct tcpinfo *)data; in dissect_iwarp_mpa_heur()
[all …]
/dports/devel/ice37/ice-3.7.2/ruby/test/Ice/info/
H A DAllTests.rb79 test(tcpinfo.port == port)
80 test(!tcpinfo.compress)
81 test(tcpinfo.host == defaultHost)
84 test(ctx["host"] == tcpinfo.host)
102 tcpinfo = getTCPConnectionInfo(info)
106 test(tcpinfo.remotePort == port)
108 test(tcpinfo.remoteAddress == defaultHost)
109 test(tcpinfo.localAddress == defaultHost)
111 test(tcpinfo.rcvSize >= 1024)
112 test(tcpinfo.sndSize >= 2048)
[all …]
/dports/www/varnish-modules/varnish-modules-0.18.0/src/
H A Dvmod_tcp.c63 struct tcp_info tcpinfo; in vmod_dump_info() local
66 (void*)&tcpinfo, &tlen) < 0) { in vmod_dump_info()
73 tcpinfo.tcpi_snd_mss, tcpinfo.tcpi_rcv_mss, in vmod_dump_info()
74 tcpinfo.tcpi_lost, tcpinfo.tcpi_retrans); in vmod_dump_info()
78 tcpinfo.tcpi_pmtu, tcpinfo.tcpi_rtt, tcpinfo.tcpi_rttvar, in vmod_dump_info()
79 tcpinfo.tcpi_snd_cwnd, tcpinfo.tcpi_advmss, tcpinfo.tcpi_reordering); in vmod_dump_info()
94 struct tcp_info tcpinfo; in vmod_get_estimated_rtt() local
97 (void*)&tcpinfo, &tlen) < 0) { in vmod_get_estimated_rtt()
106 return (tcpinfo.tcpi_rtt / 1000); in vmod_get_estimated_rtt()
/dports/devel/php-ice37/ice-3.7.2/ruby/test/Ice/info/
H A DAllTests.rb79 test(tcpinfo.port == port)
80 test(!tcpinfo.compress)
81 test(tcpinfo.host == defaultHost)
84 test(ctx["host"] == tcpinfo.host)
102 tcpinfo = getTCPConnectionInfo(info)
106 test(tcpinfo.remotePort == port)
108 test(tcpinfo.remoteAddress == defaultHost)
109 test(tcpinfo.localAddress == defaultHost)
111 test(tcpinfo.rcvSize >= 1024)
112 test(tcpinfo.sndSize >= 2048)
[all …]
/dports/devel/py-ice37/ice-3.7.2/ruby/test/Ice/info/
H A DAllTests.rb79 test(tcpinfo.port == port)
80 test(!tcpinfo.compress)
81 test(tcpinfo.host == defaultHost)
84 test(ctx["host"] == tcpinfo.host)
102 tcpinfo = getTCPConnectionInfo(info)
106 test(tcpinfo.remotePort == port)
108 test(tcpinfo.remoteAddress == defaultHost)
109 test(tcpinfo.localAddress == defaultHost)
111 test(tcpinfo.rcvSize >= 1024)
112 test(tcpinfo.sndSize >= 2048)
[all …]
/dports/devel/php-ice37/ice-3.7.2/php/test/Ice/info/
H A DClient.php110 test($tcpinfo instanceof $tcpEndpointInfoClass);
111 test($tcpinfo->port == $testPort);
112 test(!$tcpinfo->compress);
113 test($tcpinfo->host == $defaultHost);
116 test($ctx["host"] == $tcpinfo->host);
138 $tcpinfo = getTCPConnectionInfo($info);
142 test($tcpinfo->remotePort == $port);
148 test($tcpinfo->rcvSize >= 1024);
149 test($tcpinfo->sndSize >= 2048);
156 test($ctx["remotePort"] == $tcpinfo->localPort);
[all …]
/dports/devel/ice37/ice-3.7.2/php/test/Ice/info/
H A DClient.php110 test($tcpinfo instanceof $tcpEndpointInfoClass);
111 test($tcpinfo->port == $testPort);
112 test(!$tcpinfo->compress);
113 test($tcpinfo->host == $defaultHost);
116 test($ctx["host"] == $tcpinfo->host);
138 $tcpinfo = getTCPConnectionInfo($info);
142 test($tcpinfo->remotePort == $port);
148 test($tcpinfo->rcvSize >= 1024);
149 test($tcpinfo->sndSize >= 2048);
156 test($ctx["remotePort"] == $tcpinfo->localPort);
[all …]
/dports/devel/py-ice37/ice-3.7.2/php/test/Ice/info/
H A DClient.php110 test($tcpinfo instanceof $tcpEndpointInfoClass);
111 test($tcpinfo->port == $testPort);
112 test(!$tcpinfo->compress);
113 test($tcpinfo->host == $defaultHost);
116 test($ctx["host"] == $tcpinfo->host);
138 $tcpinfo = getTCPConnectionInfo($info);
142 test($tcpinfo->remotePort == $port);
148 test($tcpinfo->rcvSize >= 1024);
149 test($tcpinfo->sndSize >= 2048);
156 test($ctx["remotePort"] == $tcpinfo->localPort);
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/net/netfilter/
H A Dxt_tcpudp.c70 const struct xt_tcp *tcpinfo = par->matchinfo; in tcp_mt() local
96 if (!port_match(tcpinfo->spts[0], tcpinfo->spts[1], in tcp_mt()
98 !!(tcpinfo->invflags & XT_TCP_INV_SRCPT))) in tcp_mt()
100 if (!port_match(tcpinfo->dpts[0], tcpinfo->dpts[1], in tcp_mt()
102 !!(tcpinfo->invflags & XT_TCP_INV_DSTPT))) in tcp_mt()
104 if (!NF_INVF(tcpinfo, XT_TCP_INV_FLAGS, in tcp_mt()
105 (((unsigned char *)th)[13] & tcpinfo->flg_mask) == tcpinfo->flg_cmp)) in tcp_mt()
107 if (tcpinfo->option) { in tcp_mt()
112 if (!tcp_find_option(tcpinfo->option, skb, par->thoff, in tcp_mt()
114 tcpinfo->invflags & XT_TCP_INV_OPTION, in tcp_mt()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/net/netfilter/
H A Dxt_tcpudp.c70 const struct xt_tcp *tcpinfo = par->matchinfo; in tcp_mt() local
96 if (!port_match(tcpinfo->spts[0], tcpinfo->spts[1], in tcp_mt()
98 !!(tcpinfo->invflags & XT_TCP_INV_SRCPT))) in tcp_mt()
100 if (!port_match(tcpinfo->dpts[0], tcpinfo->dpts[1], in tcp_mt()
102 !!(tcpinfo->invflags & XT_TCP_INV_DSTPT))) in tcp_mt()
104 if (!NF_INVF(tcpinfo, XT_TCP_INV_FLAGS, in tcp_mt()
105 (((unsigned char *)th)[13] & tcpinfo->flg_mask) == tcpinfo->flg_cmp)) in tcp_mt()
107 if (tcpinfo->option) { in tcp_mt()
112 if (!tcp_find_option(tcpinfo->option, skb, par->thoff, in tcp_mt()
114 tcpinfo->invflags & XT_TCP_INV_OPTION, in tcp_mt()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/net/netfilter/
H A Dxt_tcpudp.c70 const struct xt_tcp *tcpinfo = par->matchinfo; in tcp_mt() local
96 if (!port_match(tcpinfo->spts[0], tcpinfo->spts[1], in tcp_mt()
98 !!(tcpinfo->invflags & XT_TCP_INV_SRCPT))) in tcp_mt()
100 if (!port_match(tcpinfo->dpts[0], tcpinfo->dpts[1], in tcp_mt()
102 !!(tcpinfo->invflags & XT_TCP_INV_DSTPT))) in tcp_mt()
104 if (!NF_INVF(tcpinfo, XT_TCP_INV_FLAGS, in tcp_mt()
105 (((unsigned char *)th)[13] & tcpinfo->flg_mask) == tcpinfo->flg_cmp)) in tcp_mt()
107 if (tcpinfo->option) { in tcp_mt()
112 if (!tcp_find_option(tcpinfo->option, skb, par->thoff, in tcp_mt()
114 tcpinfo->invflags & XT_TCP_INV_OPTION, in tcp_mt()
[all …]
/dports/devel/php-ice37/ice-3.7.2/python/test/Ice/info/
H A DAllTests.py154 test(tcpinfo.port == port)
155 test(not tcpinfo.compress)
159 test(ctx["host"] == tcpinfo.host)
177 tcpinfo = getTCPConnectionInfo(info)
180 test(tcpinfo.remotePort == port)
184 test(tcpinfo.rcvSize >= 1024)
185 test(tcpinfo.sndSize >= 2048)
190 test(ctx["remoteAddress"] == tcpinfo.localAddress)
191 test(ctx["localAddress"] == tcpinfo.remoteAddress)
192 test(ctx["remotePort"] == str(tcpinfo.localPort))
[all …]
/dports/devel/ice37/ice-3.7.2/python/test/Ice/info/
H A DAllTests.py154 test(tcpinfo.port == port)
155 test(not tcpinfo.compress)
159 test(ctx["host"] == tcpinfo.host)
177 tcpinfo = getTCPConnectionInfo(info)
180 test(tcpinfo.remotePort == port)
184 test(tcpinfo.rcvSize >= 1024)
185 test(tcpinfo.sndSize >= 2048)
190 test(ctx["remoteAddress"] == tcpinfo.localAddress)
191 test(ctx["localAddress"] == tcpinfo.remoteAddress)
192 test(ctx["remotePort"] == str(tcpinfo.localPort))
[all …]
/dports/devel/py-ice37/ice-3.7.2/python/test/Ice/info/
H A DAllTests.py154 test(tcpinfo.port == port)
155 test(not tcpinfo.compress)
159 test(ctx["host"] == tcpinfo.host)
177 tcpinfo = getTCPConnectionInfo(info)
180 test(tcpinfo.remotePort == port)
184 test(tcpinfo.rcvSize >= 1024)
185 test(tcpinfo.sndSize >= 2048)
190 test(ctx["remoteAddress"] == tcpinfo.localAddress)
191 test(ctx["localAddress"] == tcpinfo.remoteAddress)
192 test(ctx["remotePort"] == str(tcpinfo.localPort))
[all …]
/dports/www/trafficserver/trafficserver-9.1.1/plugins/tcpinfo/
H A DMakefile.inc17 pkglib_LTLIBRARIES += tcpinfo/tcpinfo.la
18 tcpinfo_tcpinfo_la_SOURCES = tcpinfo/tcpinfo.cc

1234567891011