Home
last modified time | relevance | path

Searched refs:raw_packet (Results 1 – 25 of 128) sorted by relevance

123456

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/call/
H A Drtp_rtcp_demuxer_helper_unittest.cc37 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
39 absl::optional<uint32_t> ssrc = ParseRtcpPacketSenderSsrc(raw_packet); in TEST()
47 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
49 absl::optional<uint32_t> ssrc = ParseRtcpPacketSenderSsrc(raw_packet); in TEST()
56 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
65 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
75 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
84 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
101 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
110 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libwebrtc/webrtc/call/
H A Drtp_rtcp_demuxer_helper_unittest.cc36 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
38 rtc::Optional<uint32_t> ssrc = ParseRtcpPacketSenderSsrc(raw_packet); in TEST()
46 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
48 rtc::Optional<uint32_t> ssrc = ParseRtcpPacketSenderSsrc(raw_packet); in TEST()
55 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
64 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
74 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
83 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
100 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
109 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
[all …]
/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/webrtc/call/
H A Drtp_rtcp_demuxer_helper_unittest.cc36 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
38 rtc::Optional<uint32_t> ssrc = ParseRtcpPacketSenderSsrc(raw_packet); in TEST()
46 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
48 rtc::Optional<uint32_t> ssrc = ParseRtcpPacketSenderSsrc(raw_packet); in TEST()
55 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
64 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
74 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
83 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
100 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
109 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/media/webrtc/trunk/webrtc/call/
H A Drtp_rtcp_demuxer_helper_unittest.cc36 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
38 rtc::Optional<uint32_t> ssrc = ParseRtcpPacketSenderSsrc(raw_packet); in TEST()
46 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
48 rtc::Optional<uint32_t> ssrc = ParseRtcpPacketSenderSsrc(raw_packet); in TEST()
55 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
64 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
74 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
83 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
100 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
109 rtc::Buffer raw_packet = rtcp_packet.Build(); in TEST() local
[all …]
/dports/databases/percona-toolkit/percona-toolkit-3.3.0/lib/
H A DTcpdumpParser.pm84 while ( defined(my $raw_packet = $next_event->()) ) {
85 next if $raw_packet =~ m/^$/; # issue 564
90 $raw_packet =~ s/\n20\Z//;
91 …$raw_packet = "20$raw_packet" if $raw_packet =~ /\A20-\d\d-\d\d/; # workaround for year 2020 probl…
92 $raw_packet = "20$raw_packet" unless $raw_packet =~ m/\A20/;
97 $raw_packet =~ s/0x0000:.+?(450.) /0x0000: $1 /;
99 my $packet = $self->_parse_packet($raw_packet);
101 $packet->{raw_packet} = $raw_packet;
/dports/games/legesmotus/legesmotus-0.4.0/common/
H A DCommonNetwork.cpp49 void CommonNetwork::send_raw_packet(const UDPPacket& raw_packet) { in send_raw_packet() argument
74 m_socket.send(raw_packet); in send_raw_packet()
79 bool CommonNetwork::receive_raw_packet(UDPPacket& raw_packet) { in receive_raw_packet() argument
80 return m_socket.has_packets() && m_socket.recv(raw_packet); in receive_raw_packet()
102 UDPPacket raw_packet(MAX_PACKET_LENGTH); in send_packet() local
103 raw_packet.set_address(dest); in send_packet()
104 raw_packet.fill(packet_header.make_string()); in send_packet()
105 raw_packet.append(packet_data); in send_packet()
106 send_raw_packet(raw_packet); in send_packet()
/dports/games/legesmotus/legesmotus-0.4.0/serverscanner/
H A DServerScannerNetwork.cpp100 UDPPacket raw_packet(MAX_PACKET_LENGTH); in receive_packets() local
104 while (receive_raw_packet(raw_packet)) { in receive_packets()
105 process_unbound_packet(raw_packet); in receive_packets()
111 void ServerScannerNetwork::process_unbound_packet(const UDPPacket& raw_packet) { in process_unbound_packet() argument
112 PacketReader reader(raw_packet); in process_unbound_packet()
116 m_controller.server_info(raw_packet.get_address(), reader); in process_unbound_packet()
119 m_controller.upgrade_available(raw_packet.get_address(), reader); in process_unbound_packet()
122 m_controller.hole_punch_packet(raw_packet.get_address(), reader); in process_unbound_packet()
/dports/games/legesmotus/legesmotus-0.4.0/client/
H A DClientNetwork.cpp100 UDPPacket raw_packet(MAX_PACKET_LENGTH); in receive_packets() local
103 while (receive_raw_packet(raw_packet)) { in receive_packets()
104 if (is_connected() && raw_packet.get_address() == m_server_address) { in receive_packets()
105 PacketReader packet(raw_packet); in receive_packets()
111 send_ack(raw_packet.get_address(), packet); in receive_packets()
130 process_unbound_packet(raw_packet); in receive_packets()
238 void ClientNetwork::process_unbound_packet(const UDPPacket& raw_packet) { in process_unbound_packet() argument
239 PacketReader reader(raw_packet); in process_unbound_packet()
243 m_controller.server_info(raw_packet.get_address(), reader); in process_unbound_packet()
247 m_controller.upgrade_available(raw_packet.get_address(), reader); in process_unbound_packet()
[all …]
/dports/net/p5-NetPacket/NetPacket-1.6.0/t/
H A Dip_trailing.t11 my $raw_packet = <<PACKET; # hex-encoded
21 $raw_packet =~ s!^\d{4}!!mg;
22 $raw_packet =~ s!\s!!g;
23 $raw_packet =~ s!([a-f0-9]{2})!chr hex $1!eg;
25 my $ip = NetPacket::IP->decode($raw_packet);
/dports/games/legesmotus/legesmotus-0.4.0/server/
H A DServerNetwork.cpp109 UDPPacket raw_packet(MAX_PACKET_LENGTH); in receive_packets() local
112 while (receive_raw_packet(raw_packet)) { in receive_packets()
113 PacketReader packet(raw_packet); in receive_packets()
119 send_ack(raw_packet.get_address(), packet); in receive_packets()
121 if (Peer* peer = get_peer(raw_packet.get_address())) { in receive_packets()
124 process_packet(raw_packet.get_address(), packet); in receive_packets()
128 process_packet(raw_packet.get_address(), peer->packet_queue.peek()); in receive_packets()
136 process_packet(raw_packet.get_address(), packet); in receive_packets()
140 process_packet(raw_packet.get_address(), packet); in receive_packets()
143 m_server.excessive_packet_drop(raw_packet.get_address()); in receive_packets()
[all …]
/dports/net-mgmt/p5-Net-NSCA-Client/Net-NSCA-Client-0.009002/lib/Net/NSCA/Client/
H A DInitialPacket.pm34 __PACKAGE__->meta->add_package_symbol(q{&(""} => sub { shift->raw_packet });
46 has raw_packet => ( attribute in Net::NSCA::Client::InitialPacket
86 @args = (raw_packet => $args[0]);
92 if (defined(my $raw_packet = initialize_moose_attr_early($class, raw_packet => $args))) {
99 my $new_args = _constructor_options_from_string($raw_packet, $server_config);
111 return shift->raw_packet;
H A DDataPacket.pm38 __PACKAGE__->meta->add_package_symbol(q{&(""} => sub { shift->raw_packet });
55 has raw_packet => ( attribute in Net::NSCA::Client::DataPacket
103 @args = (raw_packet => $args[0]);
109 if (defined(my $raw_packet = initialize_moose_attr_early($class, raw_packet => $args))) {
116 my $new_args = _constructor_options_from_string($raw_packet, $server_config);
128 return shift->raw_packet;
/dports/security/snort/snort-2.9.18/src/dynamic-preprocessors/dnp3/
H A Ddnp3_roptions.h44 int DNP3FuncEval(void *raw_packet, const uint8_t **cursor, void *data);
45 int DNP3ObjEval(void *raw_packet, const uint8_t **cursor, void *data);
46 int DNP3IndEval(void *raw_packet, const uint8_t **cursor, void *data);
47 int DNP3DataEval(void *raw_packet, const uint8_t **cursor, void *data);
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/webrtc/modules/congestion_controller/
H A Dtransport_feedback_adapter_unittest.cc193 rtc::Buffer raw_packet = feedback->Build(); in TEST_F() local
194 feedback = rtcp::TransportFeedback::ParseFrom(raw_packet.data(), in TEST_F()
195 raw_packet.size()); in TEST_F()
287 rtc::Buffer raw_packet = feedback->Build(); in TEST_F() local
289 rtcp::TransportFeedback::ParseFrom(raw_packet.data(), raw_packet.size()); in TEST_F()
312 raw_packet = feedback->Build(); in TEST_F()
314 rtcp::TransportFeedback::ParseFrom(raw_packet.data(), raw_packet.size()); in TEST_F()
343 rtc::Buffer raw_packet = feedback->Build(); in TEST_F() local
344 feedback = rtcp::TransportFeedback::ParseFrom(raw_packet.data(), in TEST_F()
345 raw_packet.size()); in TEST_F()
/dports/games/legesmotus/legesmotus-0.4.0/metaserver/
H A DMetaServer.cpp71 UDPPacket raw_packet(MAX_PACKET_LENGTH); in run() local
72 while (m_socket.recv(raw_packet)) { in run()
74 process_packet(raw_packet); in run()
203 UDPPacket raw_packet(MAX_PACKET_LENGTH); in send_packet() local
204 raw_packet.set_address(address); in send_packet()
205 raw_packet.fill(packet_data.get_header().make_string()); in send_packet()
206 raw_packet.append(packet_data.packet_data()); in send_packet()
207 m_socket.send(raw_packet); in send_packet()
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/sql/
H A Dprotocol_classic.cc820 raw_packet= m_thd->net.read_pos; in read_packet()
847 data->com_refresh.options= raw_packet[0]; in parse_packet()
860 data->com_kill.id= (ulong) uint4korr(raw_packet); in parse_packet()
881 data->com_stmt_execute.params= raw_packet + 9; in parse_packet()
938 data->com_field_list.table_name= raw_packet; in parse_packet()
940 strend((char *)raw_packet) - (char *)raw_packet; in parse_packet()
943 data->com_field_list.query= raw_packet + len + 1; in parse_packet()
963 raw_packet= pkt; in create_command()
986 raw_packet[0]= (uchar) COM_SLEEP; in get_command()
992 *cmd= (enum enum_server_command) raw_packet[0]; in get_command()
[all …]
/dports/databases/percona57-server/percona-server-5.7.36-39/sql/
H A Dprotocol_classic.cc820 raw_packet= m_thd->net.read_pos; in read_packet()
847 data->com_refresh.options= raw_packet[0]; in parse_packet()
860 data->com_kill.id= (ulong) uint4korr(raw_packet); in parse_packet()
881 data->com_stmt_execute.params= raw_packet + 9; in parse_packet()
938 data->com_field_list.table_name= raw_packet; in parse_packet()
940 strend((char *)raw_packet) - (char *)raw_packet; in parse_packet()
943 data->com_field_list.query= raw_packet + len + 1; in parse_packet()
963 raw_packet= pkt; in create_command()
986 raw_packet[0]= (uchar) COM_SLEEP; in get_command()
992 *cmd= (enum enum_server_command) raw_packet[0]; in get_command()
[all …]
/dports/databases/percona57-client/percona-server-5.7.36-39/sql/
H A Dprotocol_classic.cc820 raw_packet= m_thd->net.read_pos; in read_packet()
847 data->com_refresh.options= raw_packet[0]; in parse_packet()
860 data->com_kill.id= (ulong) uint4korr(raw_packet); in parse_packet()
881 data->com_stmt_execute.params= raw_packet + 9; in parse_packet()
938 data->com_field_list.table_name= raw_packet; in parse_packet()
940 strend((char *)raw_packet) - (char *)raw_packet; in parse_packet()
943 data->com_field_list.query= raw_packet + len + 1; in parse_packet()
963 raw_packet= pkt; in create_command()
986 raw_packet[0]= (uchar) COM_SLEEP; in get_command()
992 *cmd= (enum enum_server_command) raw_packet[0]; in get_command()
[all …]
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/sql/
H A Dprotocol_classic.cc820 raw_packet= m_thd->net.read_pos; in read_packet()
847 data->com_refresh.options= raw_packet[0]; in parse_packet()
860 data->com_kill.id= (ulong) uint4korr(raw_packet); in parse_packet()
881 data->com_stmt_execute.params= raw_packet + 9; in parse_packet()
938 data->com_field_list.table_name= raw_packet; in parse_packet()
940 strend((char *)raw_packet) - (char *)raw_packet; in parse_packet()
943 data->com_field_list.query= raw_packet + len + 1; in parse_packet()
963 raw_packet= pkt; in create_command()
986 raw_packet[0]= (uchar) COM_SLEEP; in get_command()
992 *cmd= (enum enum_server_command) raw_packet[0]; in get_command()
[all …]
/dports/databases/mysql57-client/mysql-5.7.36/sql/
H A Dprotocol_classic.cc820 raw_packet= m_thd->net.read_pos; in read_packet()
847 data->com_refresh.options= raw_packet[0]; in parse_packet()
860 data->com_kill.id= (ulong) uint4korr(raw_packet); in parse_packet()
881 data->com_stmt_execute.params= raw_packet + 9; in parse_packet()
938 data->com_field_list.table_name= raw_packet; in parse_packet()
940 strend((char *)raw_packet) - (char *)raw_packet; in parse_packet()
943 data->com_field_list.query= raw_packet + len + 1; in parse_packet()
963 raw_packet= pkt; in create_command()
986 raw_packet[0]= (uchar) COM_SLEEP; in get_command()
992 *cmd= (enum enum_server_command) raw_packet[0]; in get_command()
[all …]
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/sql/
H A Dprotocol_classic.cc820 raw_packet= m_thd->net.read_pos; in read_packet()
847 data->com_refresh.options= raw_packet[0]; in parse_packet()
860 data->com_kill.id= (ulong) uint4korr(raw_packet); in parse_packet()
881 data->com_stmt_execute.params= raw_packet + 9; in parse_packet()
938 data->com_field_list.table_name= raw_packet; in parse_packet()
940 strend((char *)raw_packet) - (char *)raw_packet; in parse_packet()
943 data->com_field_list.query= raw_packet + len + 1; in parse_packet()
963 raw_packet= pkt; in create_command()
986 raw_packet[0]= (uchar) COM_SLEEP; in get_command()
992 *cmd= (enum enum_server_command) raw_packet[0]; in get_command()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtcp_transceiver_impl_unittest.cc554 auto raw_packet = sr.Build(); in TEST() local
571 auto raw_packet = sr.Build(); in TEST() local
595 auto raw_packet = sr.Build(); in TEST() local
613 auto raw_packet = bye.Build(); in TEST() local
637 auto raw_packet = xr.Build(); in TEST() local
663 auto raw_packet = xr.Build(); in TEST() local
684 auto raw_packet = compound.Build(); in TEST() local
734 auto raw_packet = sr.Build(); in TEST() local
777 auto raw_packet = sr.Build(); in TEST() local
1011 auto raw_packet = xr.Build(); in TEST() local
[all …]
/dports/net-im/tg_owt/tg_owt-d578c76/src/modules/rtp_rtcp/source/
H A Drtcp_transceiver_impl_unittest.cc558 auto raw_packet = sr.Build(); in TEST() local
575 auto raw_packet = sr.Build(); in TEST() local
599 auto raw_packet = sr.Build(); in TEST() local
617 auto raw_packet = bye.Build(); in TEST() local
641 auto raw_packet = xr.Build(); in TEST() local
667 auto raw_packet = xr.Build(); in TEST() local
688 auto raw_packet = compound.Build(); in TEST() local
738 auto raw_packet = sr.Build(); in TEST() local
781 auto raw_packet = sr.Build(); in TEST() local
1015 auto raw_packet = xr.Build(); in TEST() local
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtcp_transceiver_impl_unittest.cc558 auto raw_packet = sr.Build(); in TEST() local
575 auto raw_packet = sr.Build(); in TEST() local
599 auto raw_packet = sr.Build(); in TEST() local
617 auto raw_packet = bye.Build(); in TEST() local
641 auto raw_packet = xr.Build(); in TEST() local
667 auto raw_packet = xr.Build(); in TEST() local
688 auto raw_packet = compound.Build(); in TEST() local
738 auto raw_packet = sr.Build(); in TEST() local
781 auto raw_packet = sr.Build(); in TEST() local
1015 auto raw_packet = xr.Build(); in TEST() local
[all …]
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/modules/rtp_rtcp/source/
H A Drtcp_transceiver_impl_unittest.cc600 auto raw_packet = sr.Build(); in TEST() local
620 auto raw_packet = sr.Build(); in TEST() local
647 auto raw_packet = sr.Build(); in TEST() local
668 auto raw_packet = bye.Build(); in TEST() local
695 auto raw_packet = xr.Build(); in TEST() local
724 auto raw_packet = xr.Build(); in TEST() local
748 auto raw_packet = compound.Build(); in TEST() local
803 auto raw_packet = sr.Build(); in TEST() local
849 auto raw_packet = sr.Build(); in TEST() local
1102 auto raw_packet = xr.Build(); in TEST() local
[all …]

123456