Home
last modified time | relevance | path

Searched refs:dst_port (Results 1 – 25 of 1673) sorted by relevance

12345678910>>...67

/dports/net/ryu/ryu-4.26/ryu/lib/packet/
H A Dudp.py51 self.dst_port = dst_port
56 def get_packet_type(src_port, dst_port): argument
57 if ((src_port in [67, 68] and dst_port == 67) or
58 (dst_port in [67, 68] and src_port == 67)):
60 if ((src_port in [546, 547] and dst_port == 547) or
61 (dst_port in [546, 547] and src_port == 547)):
63 if (dst_port == vxlan.UDP_DST_PORT or
64 dst_port == vxlan.UDP_DST_PORT_OLD):
66 if dst_port == geneve.UDP_DST_PORT:
74 msg = cls(src_port, dst_port, total_length, csum)
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/tools/testing/selftests/netfilter/
H A Dnft_concat_range.sh499 [ -n "${dst_port}" ] && dst_port="-ud ${dst_port}"
558 [ -n "${dst_port}" ] && dst_port="-ud ${dst_port}"
611 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
639 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
667 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
702 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
730 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
758 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
793 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
821 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/tools/testing/selftests/netfilter/
H A Dnft_concat_range.sh499 [ -n "${dst_port}" ] && dst_port="-ud ${dst_port}"
558 [ -n "${dst_port}" ] && dst_port="-ud ${dst_port}"
611 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
639 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
667 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
702 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
730 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
758 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
793 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
821 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/tools/testing/selftests/netfilter/
H A Dnft_concat_range.sh499 [ -n "${dst_port}" ] && dst_port="-ud ${dst_port}"
558 [ -n "${dst_port}" ] && dst_port="-ud ${dst_port}"
611 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
639 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
667 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
702 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
730 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
758 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
793 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
821 [ -n "${dst_port}" ] && dst_port="-p ${dst_port}"
[all …]
/dports/net-mgmt/etherape/etherape-0.9.20/src/stats/
H A Dconversations.c44 guint16 src_port, guint16 dst_port) in find_conversation_ptr() argument
56 (!dst_port || !conv->dst_port || (dst_port == conv->dst_port)) in find_conversation_ptr()
60 (!src_port || !conv->dst_port || (src_port == conv->dst_port)) && in find_conversation_ptr()
61 (!dst_port || !conv->src_port || (dst_port == conv->src_port)) in find_conversation_ptr()
75 guint16 src_port, guint16 dst_port, const gchar *data) in add_conversation() argument
87 src_port, dst_port))) { in add_conversation()
92 address_to_str(dst_address), dst_port); in add_conversation()
97 address_to_str(dst_address), dst_port, data); in add_conversation()
103 address_to_str(dst_address), dst_port, data); in add_conversation()
111 conv->dst_port = dst_port; in add_conversation()
[all …]
/dports/net/ndpi/nDPI-92a1be2/src/lib/
H A Dndpi_community_id.c191 u_int16_t src_port, u_int16_t dst_port, in ndpi_community_id_finalize_and_compute_hash() argument
213 off += ndpi_community_id_buf_copy(&comm_buf[off], &dst_port, sizeof(dst_port)); in ndpi_community_id_finalize_and_compute_hash()
264 u_int16_t src_port, u_int16_t dst_port, in ndpi_flowv4_flow_hash() argument
298 src_port = dst_port = 0; in ndpi_flowv4_flow_hash()
306 dst_port = htons(dst_port); in ndpi_flowv4_flow_hash()
315 port_a = src_port, port_b = dst_port; in ndpi_flowv4_flow_hash()
319 port_a = dst_port, port_b = src_port; in ndpi_flowv4_flow_hash()
359 src_port = dst_port = 0; in ndpi_flowv6_flow_hash()
365 dst_port = htons(dst_port); in ndpi_flowv6_flow_hash()
369 port_a = src_port, port_b = dst_port; in ndpi_flowv6_flow_hash()
[all …]
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/host/lib/utils/
H A Dgraph_utils.cpp55 && edge.dst_port == current_port)) { in get_block_chain()
63 current_port = (source_chain) ? edge.dst_port : edge.src_port; in get_block_chain()
90 const size_t dst_port) in connect_through_blocks() argument
99 [dst_blk, dst_port](bool dst_found, const graph_edge_t edge) { in connect_through_blocks()
104 && dst_port == edge.dst_port); in connect_through_blocks()
111 && dst_port == block_chain.back().dst_port) { in connect_through_blocks()
115 % block_chain.back().dst_blockid % block_chain.back().dst_port in connect_through_blocks()
116 % dst_blk.to_string() % dst_port); in connect_through_blocks()
121 auto dest_chain = get_block_chain(graph, dst_blk, dst_port, false); in connect_through_blocks()
145 sep_to_dst_port = edge.dst_port; in connect_through_blocks()
[all …]
/dports/net-mgmt/bpft/bpft/contrib/p5-trafd/
H A Dtraflog.pl50 my ($src_port,$dst_port) = @$record[3..4];
65 if( $dst_port == 0 ) {
66 $dst_port = 'client';
68 elsif( $dst_port == -1 ) {
69 $dst_port = 'none';
72 $dst_port .= '';
77 $dst_port .= '';
84 TrafD::InetN2A($$record[1]),$dst_port,
/dports/multimedia/libv4l/linux-5.13-rc2/include/trace/events/
H A Dvsock_virtio_transport_common.h39 __u32 dst_cid, __u32 dst_port,
47 dst_cid, dst_port,
57 __field(__u32, dst_port)
67 __entry->dst_port = dst_port;
75 __entry->dst_cid, __entry->dst_port,
85 __u32 dst_cid, __u32 dst_port,
95 dst_cid, dst_port,
107 __field(__u32, dst_port)
119 __entry->dst_port = dst_port;
130 __entry->dst_cid, __entry->dst_port,
/dports/multimedia/v4l_compat/linux-5.13-rc2/include/trace/events/
H A Dvsock_virtio_transport_common.h39 __u32 dst_cid, __u32 dst_port,
47 dst_cid, dst_port,
57 __field(__u32, dst_port)
67 __entry->dst_port = dst_port;
75 __entry->dst_cid, __entry->dst_port,
85 __u32 dst_cid, __u32 dst_port,
95 dst_cid, dst_port,
107 __field(__u32, dst_port)
119 __entry->dst_port = dst_port;
130 __entry->dst_cid, __entry->dst_port,
/dports/multimedia/v4l-utils/linux-5.13-rc2/include/trace/events/
H A Dvsock_virtio_transport_common.h39 __u32 dst_cid, __u32 dst_port,
47 dst_cid, dst_port,
57 __field(__u32, dst_port)
67 __entry->dst_port = dst_port;
75 __entry->dst_cid, __entry->dst_port,
85 __u32 dst_cid, __u32 dst_port,
95 dst_cid, dst_port,
107 __field(__u32, dst_port)
119 __entry->dst_port = dst_port;
130 __entry->dst_cid, __entry->dst_port,
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/fpga/usrp3/sim/rfnoc/
H A DPkgCtrlIfaceBfm.sv20 ctrl_port_t dst_port; register in PkgCtrlIfaceBfm.CtrlIfaceBfm
33 ctrl_port_t dst_port, port
37 this.dst_port = dst_port;
60 dst_port : dst_port,
100 dst_port : dst_port,
/dports/net/ryu/ryu-4.26/ryu/tests/unit/packet/
H A Dtest_udp.py38 dst_port = 8080 variable in Test_udp
41 u = udp(src_port, dst_port, total_length, csum)
42 buf = pack(udp._PACK_STR, src_port, dst_port, total_length, csum)
52 eq_(self.dst_port, self.u.dst_port)
60 eq_(self.dst_port, r1.dst_port)
67 dst_port = 8080
76 u = udp(src_port, dst_port, total_length, csum)
81 eq_(res[1], dst_port)
/dports/net-mgmt/netustad/netustad-0.3.1/data/linux/
H A Dnat_add28 dst_port=`echo $QUERY_STRING | $awk_cmd -F\& '{print $6}' | $sed_cmd s/dst_port=//`
29 if test "x" = "x$dst_port"; then
30 dst_port=""
32 dst_port="--dport $dst_port"
36 $fw_cmd -t nat -A POSTROUTING -p $proto -s $src_ip $src_port -d $dst_ip $dst_port -j MASQUERADE
38 …$fw_cmd -t nat -A POSTROUTING -p $proto -s $src_ip $src_port -d $dst_ip $dst_port -j SNAT --to $ma…
/dports/comms/libticalcs2/libticalcs2-1.1.9/src/
H A Dnsp_vpkt.c119 vtl->dst_port = dst_port; in nsp_vtl_pkt_fill()
245 || pkt.dst_port != NSP_PORT_ADDR_REQUEST) in nsp_addr_request()
268 pkt.dst_port = NSP_PORT_ADDR_ASSIGN; in nsp_addr_assign()
292 pkt.dst_port = handle->priv.nsp_dst_port; in nsp_send_ack()
319 pkt.dst_port = port; in nsp_send_nack_ex()
392 pkt.dst_port = handle->priv.nsp_dst_port; in nsp_send_disconnect()
423 addr = pkt.dst_port; in nsp_recv_disconnect()
432 pkt.dst_port = handle->priv.nsp_dst_port; in nsp_recv_disconnect()
466 raw.dst_port = vtl->dst_port; in nsp_send_data()
564 if (raw.dst_port == NSP_PORT_LOGIN) in nsp_recv_data()
[all …]
/dports/audio/faust/faust-2.37.3/architecture/faust/audio/
H A Djack-dsp.h343 jack_port_t* dst_port = driver->getInputPort(src); in connect() local
344 if (src_port && dst_port) { in connect()
350 jack_port_t* dst_port = getInputPort(dst); in connect() local
351 if (dst_port) { in connect()
369 jack_port_t* dst_port = driver->getInputPort(src); in disconnect() local
370 if (src_port && dst_port) { in disconnect()
376 jack_port_t* dst_port = getInputPort(dst); in disconnect() local
377 if (dst_port) { in disconnect()
396 if (src_port && dst_port) { in isConnected()
404 jack_port_t* dst_port = getInputPort(dst); in isConnected() local
[all …]
/dports/net/wireshark-lite/wireshark-3.6.1/ui/
H A Drtp_stream_id.c35 dest->dst_port=src->dst_port; in rtpstream_id_copy()
48 dest->dst_port=pinfo->destport; in rtpstream_id_copy_pinfo()
55 dest->dst_port=pinfo->srcport; in rtpstream_id_copy_pinfo()
80 hash ^= id->src_port | id->dst_port << 16; in rtpstream_id_to_hash()
95 && id1->dst_port == id2->dst_port) in rtpstream_id_equal()
118 && id->dst_port == pinfo->destport in rtpstream_id_equal_pinfo_rtp_info()
/dports/net/wireshark/wireshark-3.6.1/ui/
H A Drtp_stream_id.c35 dest->dst_port=src->dst_port; in rtpstream_id_copy()
48 dest->dst_port=pinfo->destport; in rtpstream_id_copy_pinfo()
55 dest->dst_port=pinfo->srcport; in rtpstream_id_copy_pinfo()
80 hash ^= id->src_port | id->dst_port << 16; in rtpstream_id_to_hash()
95 && id1->dst_port == id2->dst_port) in rtpstream_id_equal()
118 && id->dst_port == pinfo->destport in rtpstream_id_equal_pinfo_rtp_info()
/dports/net/tshark/wireshark-3.6.1/ui/
H A Drtp_stream_id.c35 dest->dst_port=src->dst_port;
48 dest->dst_port=pinfo->destport;
55 dest->dst_port=pinfo->srcport;
80 hash ^= id->src_port | id->dst_port << 16;
95 && id1->dst_port == id2->dst_port)
118 && id->dst_port == pinfo->destport
/dports/net/tshark-lite/wireshark-3.6.1/ui/
H A Drtp_stream_id.c35 dest->dst_port=src->dst_port; in rtpstream_id_copy()
48 dest->dst_port=pinfo->destport; in rtpstream_id_copy_pinfo()
55 dest->dst_port=pinfo->srcport; in rtpstream_id_copy_pinfo()
80 hash ^= id->src_port | id->dst_port << 16; in rtpstream_id_to_hash()
95 && id1->dst_port == id2->dst_port) in rtpstream_id_equal()
118 && id->dst_port == pinfo->destport in rtpstream_id_equal_pinfo_rtp_info()
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/network/aci/
H A Daci_filter_entry.py257 dst_port=dict(type='str'),
286 dst_port = module.params['dst_port']
287 if dst_port in FILTER_PORT_MAPPING.keys():
288 dst_port = FILTER_PORT_MAPPING[dst_port]
310 if dst_port is not None and (dst_end is not None or dst_start is not None):
312 elif dst_port is not None:
313 dst_end = dst_port
314 dst_start = dst_port
/dports/devel/py-gs_api_client/gs_api_client-1.1.1/gs_api_client/swagger/models/
H A Dtask_events_firewall_firewall_update_rules_schema_rulesv4out_schema.py59 …def __init__(self, src_cidr=None, dst_port=None, action=None, src_port=None, dst_cidr=None, order=… argument
74 if dst_port is not None:
75 self.dst_port = dst_port
111 def dst_port(self): member in TaskEventsFirewallFirewallUpdateRulesSchemaRulesv4outSchema
120 @dst_port.setter
121 def dst_port(self, dst_port): member in TaskEventsFirewallFirewallUpdateRulesSchemaRulesv4outSchema
129 self._dst_port = dst_port
H A Drules_properties.py55 …def __init__(self, protocol=None, dst_port=None, src_port=None, src_cidr=None, action=None, commen… argument
69 if dst_port is not None:
70 self.dst_port = dst_port
114 def dst_port(self): member in RulesProperties
124 @dst_port.setter
125 def dst_port(self, dst_port): argument
134 self._dst_port = dst_port
/dports/multimedia/v4l_compat/linux-5.13-rc2/net/openvswitch/
H A Dvport-geneve.c33 u16 dst_port; member
46 if (nla_put_u16(skb, OVS_TUNNEL_ATTR_DST_PORT, geneve_port->dst_port)) in geneve_get_options()
59 u16 dst_port; in geneve_tnl_create() local
69 dst_port = nla_get_u16(a); in geneve_tnl_create()
82 geneve_port->dst_port = dst_port; in geneve_tnl_create()
85 dev = geneve_dev_create_fb(net, parms->name, NET_NAME_USER, dst_port); in geneve_tnl_create()
/dports/multimedia/libv4l/linux-5.13-rc2/net/openvswitch/
H A Dvport-geneve.c33 u16 dst_port; member
46 if (nla_put_u16(skb, OVS_TUNNEL_ATTR_DST_PORT, geneve_port->dst_port)) in geneve_get_options()
59 u16 dst_port; in geneve_tnl_create() local
69 dst_port = nla_get_u16(a); in geneve_tnl_create()
82 geneve_port->dst_port = dst_port; in geneve_tnl_create()
85 dev = geneve_dev_create_fb(net, parms->name, NET_NAME_USER, dst_port); in geneve_tnl_create()

12345678910>>...67