Searched refs:packet (Results 1 – 9 of 9) sorted by relevance
/Renode-v1.15.3-c57714d/src/Renode/Network/NetworkServer/ |
D | NetworkServer.cs | 143 private void HandleIPv4(IPv4Packet packet) in HandleIPv4() argument 145 this.Log(LogLevel.Noisy, "Handling IPv4 packet: {0}", PacketToString(packet)); in HandleIPv4() 147 switch(packet.Protocol) in HandleIPv4() 150 HandleUdp((UdpPacket)packet.PayloadPacket); in HandleIPv4() 154 this.Log(LogLevel.Warning, "Unsupported protocol: {0}", packet.Protocol); in HandleIPv4() 159 private void HandleUdp(UdpPacket packet) in HandleUdp() argument 161 this.Log(LogLevel.Noisy, "Handling UDP packet: {0}", PacketToString(packet)); in HandleUdp() 163 if(!modules.TryGetValue(packet.DestinationPort, out var module)) in HandleUdp() 165 …evel.Warning, "Received UDP packet on port {0}, but no service is active", packet.DestinationPort); in HandleUdp() 169 … var src = new IPEndPoint(((IPv4Packet)packet.ParentPacket).SourceAddress, packet.SourcePort); in HandleUdp() [all …]
|
D | IServerModule.cs | 18 void HandleUdp(IPEndPoint source, UdpPacket packet, Action<IPEndPoint, UdpPacket> callback); in HandleUdp() argument
|
/Renode-v1.15.3-c57714d/src/Renode/RobotFrameworkEngine/ |
D | NetworkInterfaceKeywords.cs | 39 … if(!GetTesterOrThrowException(testerId).TryWaitForOutgoingPacket(timeout, out var packet)) in WaitForOutgoingPacket() 44 return packet; in WaitForOutgoingPacket() 50 …terId).TryWaitForOutgoingPacketWithBytesAtIndex(bytes, index, maxPackets, timeout, out var packet)) in WaitForOutgoingPacketWithBytesAtIndex() 55 return packet; in WaitForOutgoingPacketWithBytesAtIndex()
|
/Renode-v1.15.3-c57714d/src/Renode/Network/NetworkServer/Modules/ |
D | TftpServerModule.cs | 78 … public void HandleUdp(IPEndPoint source, UdpPacket packet, Action<IPEndPoint, UdpPacket> callback) in HandleUdp() argument 81 server.OnUdpData(source, packet.PayloadData); in HandleUdp()
|
/Renode-v1.15.3-c57714d/scripts/complex/socketcan_bridge/ |
D | README.rst | 32 To send a test packet from host to Renode you can use the ``cansend`` tool, e.g.::
|
/Renode-v1.15.3-c57714d/tests/platforms/ |
D | SAME70.robot | 37 # The next byte is the type of packet, and the next version (should be 0x02) 46 # Announce packet should have 0x1b at the next byte 55 # Sync packet should have 0x10 at the next byte 64 # Sync FUP packet should have 0x18 at the next byte
|
D | BeagleV-StarLight.robot | 46 …Wait For Line On Uart 10 packets transmitted, 10 packets received, 0% packet loss testerId=${t…
|
D | Zedboard.robot | 512 …Wait For Line On Uart 5 packets transmitted, 5 packets received, 0% packet loss testerI… 536 Wait For Line On Uart 5 packets transmitted, 5 packets received, 0% packet loss
|
/Renode-v1.15.3-c57714d/ |
D | CHANGELOG.rst | 70 * incorrect sequence number in USBIP setup packet reply 678 * crash when NetworkServer tried to log an invalid packet 885 * qCRC packet handling in GDB 886 * decoding of GDB packets, selecting the command handler based on the longest match for a packet 1856 * handling of data exceeding the maximum packet size of USB endpoint
|