HomeSort by relevance Sort by last modified time
    Searched refs:sport (Results 51 - 75 of 176) sorted by null

1 23 4 5 6 7 8

  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/linux/netfilter_bridge/
ebt_ip6.h 46 __u16 sport[2]; member in union:ebt_ip6_info::__anon68349
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/linux/netfilter_bridge/
ebt_ip.h 44 __u16 sport[2]; member in struct:ebt_ip_info
ebt_ip6.h 46 __u16 sport[2]; member in union:ebt_ip6_info::__anon69126
  /external/tcpdump/
print-tcp.c 162 uint16_t sport, dport, win, urp; local
187 sport = EXTRACT_16BITS(&tp->th_sport);
197 tcpport_string(sport),
202 tcpport_string(sport), tcpport_string(dport)));
210 tcpport_string(sport),
215 tcpport_string(sport), tcpport_string(dport)));
262 if (sport > dport)
264 else if (sport == dport) {
271 tha.port = dport << 16 | sport;
275 tha.port = sport << 16 | dport
    [all...]
print-udp.c 292 udpipaddr_print(netdissect_options *ndo, const struct ip *ip, int sport, int dport)
304 if (sport == -1) {
311 udpport_string(sport),
316 if (sport != -1) {
318 udpport_string(sport),
326 if (sport == -1) {
333 udpport_string(sport),
338 if (sport != -1) {
340 udpport_string(sport),
355 uint16_t sport, dport, ulen local
    [all...]
print-pgm.c 153 uint16_t sport, dport; local
197 sport = EXTRACT_16BITS(&pgm->pgm_sport);
205 tcpport_string(sport),
210 tcpport_string(sport), tcpport_string(dport)));
218 tcpport_string(sport),
223 tcpport_string(sport), tcpport_string(dport)));
print-dccp.c 279 u_short sport, dport; local
315 sport = EXTRACT_16BITS(&dh->dccph_sport);
322 ip6addr_string(ndo, &ip6->ip6_src), sport,
328 ipaddr_string(ndo, &ip->ip_src), sport,
  /external/libnl/etc/
pktloc 25 tcp.sport u16 tcp+0
41 udp.sport u16 tcp+0
  /system/extras/tests/net_test/
sock_diag_test.py 42 # Dict mapping (addr, sport, dport) tuples to socketpairs.
50 sport, dport = (socketpair[0].getsockname()[1],
52 socketpairs[(addr, sport, dport)] = socketpair
83 src, sport = s.getsockname()[0:2]
85 self.assertEqual(diag_msg.id.sport, sport)
126 sport = diag_msg.id.sport
128 if (addr, sport, dport) in self.socketpairs:
129 cookies[(addr, sport, dport)] = diag_msg.id.cooki
    [all...]
multinetwork_test.py 117 sport=None, seq=None)
132 desc, expected = packets.UDP(version, myaddr, dstaddr, sport=None)
152 inner = str(packets.UDP(inner_version, inner_src, inner_dst, sport=None)[1])
227 sport = packets.RandomPort()
228 s.bind((unspec, sport))
230 desc, expected = packets.UDP(version, unspec, dstaddr, sport)
291 sport = s.getsockname()[1]
299 scapy.UDP(sport=sport, dport=53) /
330 sport = s.getsockname()[1
    [all...]
sock_diag.py 70 "InetDiagSockId", "!HH16s16sI8s", "sport dport src dst iface cookie")
287 src, sport = s.getsockname()[:2]
298 sock_id = InetDiagSockId((sport, dport, src, dst, iface, "\x00" * 8))
multinetwork_base.py 534 if expectedudp.sport is None:
535 actualudp.sport = None
551 if expectedtcp.sport is None:
552 actualtcp.sport = None
  /external/ipsec-tools/src/racoon/
nattraversal.h 71 u_int16_t sport; member in struct:ph2natt
  /external/iproute2/ip/
ipxfrm.c 477 fprintf(fp, "sport %u ", ntohs(sel->sport));
483 /* type/code is stored at sport/dport in selector */
485 fprintf(fp, "type %u ", ntohs(sel->sport));
492 (((__u32)ntohs(sel->sport)) << 16) +
497 fprintf(fp, "type %u ", ntohs(sel->sport));
756 fprintf(fp, "sport %u ", ntohs(e->encap_sport));
1253 } else if (strcmp(*argv, "sport") == 0) {
1258 if (get_u16(&sel->sport, *argv, 0))
1259 invarg("value after \"sport\" is invalid", *argv)
    [all...]
link_gre.c 33 fprintf(f, " [ encap-sport PORT ] [ encap-dport PORT ]\n");
276 } else if (strcmp(*argv, "encap-sport") == 0) {
431 __u16 sport = rta_getattr_u16(tb[IFLA_GRE_ENCAP_SPORT]); local
447 if (sport == 0)
448 fputs("encap-sport auto ", f);
450 fprintf(f, "encap-sport %u", ntohs(sport));
link_iptnl.c 33 fprintf(f, " [ encap-sport PORT ] [ encap-dport PORT ]\n");
241 } else if (strcmp(*argv, "encap-sport") == 0) {
413 __u16 sport = rta_getattr_u16(tb[IFLA_IPTUN_ENCAP_SPORT]); local
429 if (sport == 0)
430 fputs("encap-sport auto ", f);
432 fprintf(f, "encap-sport %u", ntohs(sport));
  /system/core/libnetutils/
packet.c 91 uint32_t saddr, uint32_t daddr, uint32_t sport, uint32_t dport)
114 udp.source = htons(sport);
  /external/ipsec-tools/src/libipsec/
pfkey_dump.c 500 u_int16_t sport = 0, dport = 0; local
541 sport = 0; /*XXX*/
543 sport = atoi(pbuf);
547 (u_int)sport,
582 str_upperspec((u_int)m_saddr->sadb_address_proto, (u_int)sport,
  /frameworks/opt/net/wifi/service/
Android.mk 72 # that sport Marvell's wifi have support for HAL
  /bionic/libc/kernel/uapi/linux/
xfrm.h 56 __be16 sport; member in struct:xfrm_selector
  /development/ndk/platforms/android-21/include/linux/
xfrm.h 54 __be16 sport; member in struct:xfrm_selector
  /external/iproute2/include/linux/
xfrm.h 53 __be16 sport; member in struct:xfrm_selector
  /external/kernel-headers/original/uapi/linux/
xfrm.h 53 __be16 sport; member in struct:xfrm_selector
  /external/libnl/include/linux/
rtnetlink.h 385 __u16 sport; member in struct:rta_session::__anon16038::__anon16039
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
rtnetlink.h 392 __u16 sport; member in struct:rta_session::__anon38884::__anon38885

Completed in 632 milliseconds

1 23 4 5 6 7 8