Home
last modified time | relevance | path

Searched refs:lport (Results 1 – 12 of 12) sorted by relevance

/third_party/iptables/extensions/
Dlibxt_TPROXY.c24 .flags = XTOPT_MAND | XTOPT_NBO | XTOPT_PUT, XTOPT_POINTER(s, lport)},
33 .flags = XTOPT_MAND | XTOPT_NBO | XTOPT_PUT, XTOPT_POINTER(s, lport)},
56 ntohs(info->lport), (unsigned int)info->mark_value, in tproxy_tg_print()
69 ntohs(info->lport), (unsigned int)info->mark_value, in tproxy_tg_print4()
82 ntohs(info->lport), (unsigned int)info->mark_value, in tproxy_tg_print6()
90 printf(" --on-port %u", ntohs(info->lport)); in tproxy_tg_save()
103 printf(" --on-port %u", ntohs(info->lport)); in tproxy_tg_save4()
115 printf(" --on-port %u", ntohs(info->lport)); in tproxy_tg_save6()
/third_party/ltp/testcases/network/stress/ssh/
Dssh-stress.sh197 local port lport localhost rhost ret
210 lport=$(tst_rhost_run -c "tst_get_unused_port ipv${TST_IPVER} stream")
219 tst_rhost_run -c "$RHOST_SSH -f -N -L $lport:$rhost:$port </dev/null >/dev/null 2>&1"
221 RHOST_PIDS=$(tst_rhost_run -c "pgrep -f '^ssh .*$lport:$rhost:$port'")
224 tst_rhost_run -s -c "netstress -r $NS_TIMES -l -H $localhost -g $lport > /dev/null"
/third_party/iptables/include/linux/netfilter/
Dxt_TPROXY.h13 __be16 lport; member
20 __be16 lport; member
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/
Duser_inpcb.h271 #define INP_PCBHASH(faddr, lport, fport, mask) \ argument
272 (((faddr) ^ ((faddr) >> 16) ^ ntohs((lport) ^ (fport))) & (mask))
273 #define INP_PCBPORTHASH(lport, mask) \ argument
274 (ntohs((lport)) & (mask))
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_pcb.c1156 uint16_t lport, rport; local
1174 lport = ((struct sockaddr_in *)to)->sin_port;
1184 lport = ((struct sockaddr_in6 *)to)->sin6_port;
1194 lport = ((struct sockaddr_conn *)to)->sconn_port;
1204 …ephead = &SCTP_BASE_INFO(sctp_tcpephash)[SCTP_PCBHASH_ALLADDR((lport | rport), SCTP_BASE_INFO(hash…
1217 if (lport != inp->sctp_lport) {
1892 uint16_t lport, uint32_t vrf_id) argument
1951 (inp->sctp_lport == lport)) {
2056 if (inp->sctp_lport != lport) {
2136 sctp_isport_inuse(struct sctp_inpcb *inp, uint16_t lport, uint32_t vrf_id) argument
[all …]
Dsctp_pcb.h141 uint16_t lport; /* the local port used in vtag */ member
812 int sctp_is_in_timewait(uint32_t tag, uint16_t lport, uint16_t rport);
815 sctp_add_vtag_to_timewait(uint32_t tag, uint32_t time, uint16_t lport, uint16_t rport);
846 int sctp_is_vtag_good(uint32_t, uint16_t lport, uint16_t rport, struct timeval *);
Dsctputil.h85 uint32_t sctp_select_a_tag(struct sctp_inpcb *, uint16_t lport, uint16_t rport, int);
Dsctputil.c1080 sctp_select_a_tag(struct sctp_inpcb *inp, uint16_t lport, uint16_t rport, int check) in sctp_select_a_tag() argument
1094 if (!check || sctp_is_vtag_good(x, lport, rport, &now)) { in sctp_select_a_tag()
/third_party/toybox/toys/net/
Dnetstat.c126 unsigned lport, rport, state, txq, rxq, num, uid, nitems; in show_ip() local
133 &laddr.i6.u.d, &lport, &raddr.i6.u.a, &raddr.i6.u.b, in show_ip()
140 &num, &laddr.i4.u, &lport, &raddr.i4.u, &rport, &state, &txq, in show_ip()
152 addr2str(nitems, &laddr, lport, lip, TT.wpad, label); in show_ip()
/third_party/ffmpeg/libavfilter/
Daf_lv2.c435 const LilvPort *lport = lilv_plugin_get_port_by_index(s->plugin, i); in init() local
439 is_optional = lilv_port_has_property(s->plugin, lport, s->lv2_Optional); in init()
441 if (lilv_port_is_a(s->plugin, lport, s->lv2_InputPort)) { in init()
443 } else if (!lilv_port_is_a(s->plugin, lport, s->lv2_OutputPort) && !is_optional) { in init()
447 if (lilv_port_is_a(s->plugin, lport, s->lv2_ControlPort)) { in init()
451 } else if (lilv_port_is_a(s->plugin, lport, s->lv2_AudioPort)) { in init()
/third_party/libcoap/include/coap3/
Dcoap_session_internal.h40 uint16_t lport; /**< local port */ member
/third_party/libcoap/src/
Dcoap_session.c615 addr_hash->lport = coap_address_get_port(&addr_info->local); in coap_make_addr_hash()