/Zephyr-latest/subsys/net/lib/capture/ |
D | Kconfig | 1 # Capture network packets 15 This option allows user to capture network packets. 16 The captured packets are sent to another host for processing. 18 process the packets. 19 The captured network packets are sent using IPIP tunnel 25 int "How many network packets to allocate for capture" 50 bool "Capture non-IP packets a.k.a cooked (SLL) mode [EXPERIMENTAL]" 56 This enables application to capture packets in so called 104 bool "Debug sent packets"
|
/Zephyr-latest/include/zephyr/net/ |
D | net_stats.h | 58 * @brief Number of network packets sent and received. 61 /** Number of packets sent */ 63 /** Number of packets received */ 71 /** Number of received packets at the IP layer. */ 74 /** Number of sent packets at the IP layer. */ 77 /** Number of forwarded packets at the IP layer. */ 80 /** Number of dropped packets at the IP layer. */ 88 /** Number of packets dropped due to wrong IP version 93 /** Number of packets dropped due to wrong IP length, high byte. */ 96 /** Number of packets dropped due to wrong IP length, low byte. */ [all …]
|
D | loopback.h | 22 * @param[in] ratio Value between 0 = no packet loss and 1 = all packets dropped 29 * @brief Get the number of dropped packets 31 * @return number of packets dropped by the loopback interface
|
/Zephyr-latest/subsys/net/l2/ieee802154/ |
D | Kconfig | 27 Enable printing out in/out 802.15.4 packets. This is extremely 36 bool "Print-out both RX and TX packets" 38 This will print-out both received and transmitted packets. 41 bool "Print-out only RX packets" 43 This will print-out received packets only. 46 bool "Print-out only TX packets" 48 This will print-out transmitted packets only. 83 If IPv6 packets size more than 802.15.4 MTU, packet is fragmented 84 and reassemble incoming packets according to RFC4944/6282.
|
/Zephyr-latest/subsys/mgmt/mcumgr/transport/ |
D | Kconfig.lorawan | 28 this port will be treated as SMP packets. 31 bool "Use confirmed packets for uplinks" 34 Will use confirmed uplink packets for responses if enabled, otherwise will use 35 unconfirmed packets. 63 Stack size of the thread that will poll for empty additional packets when a partial 70 Priority of the thread for polling for empty additional packets when a partial frame 78 empty additional packets when a partial frame is received.
|
D | Kconfig.bluetooth | 21 bool "Reassemble packets in Bluetooth SMP transport" 64 Minimum connection interval in 1.25ms units used during the exchange of SMP packets. 71 Maximum connection interval in 1.25ms units used during the exchange of SMP packets. 78 Peripheral latency in Connection Intervals used during the exchange of SMP packets. 85 Supervision timeout in 10ms used during the exchange of SMP packets.
|
/Zephyr-latest/samples/net/sockets/packet/ |
D | Kconfig | 9 int "Wait time between sent packets (in ms)" 13 If set to 0, then the packets are sent as fast as possible, which 21 This will strip Ethernet header from received packets 22 and insert Ethernet header to sent packets.
|
/Zephyr-latest/samples/net/capture/ |
D | README.rst | 5 Capture network packets and send them to a remote host via IPIP tunnel. 13 The captured packets are sent to 15 same connection as what we are capturing packets or it can be a separate 17 then the remote host where the captured packets are sent can also be reached 59 RX packets 0 bytes 0 (0.0 B) 61 TX packets 0 bytes 0 (0.0 B) 68 RX packets 0 bytes 0 (0.0 B) 70 TX packets 0 bytes 0 (0.0 B) 77 RX packets 0 bytes 0 (0.0 B) 79 TX packets 0 bytes 0 (0.0 B) [all …]
|
/Zephyr-latest/doc/kernel/data_structures/ |
D | spsc_pbuf.rst | 8 packets are stored in the buffer. Packet buffer works under assumption that there 9 is a single context that produces packets and a single context that consumes the 14 Packets are added to the buffer using :c:func:`spsc_pbuf_write` which copies a 17 Packets are copied out of the buffer using :c:func:`spsc_pbuf_read`.
|
D | mpsc_pbuf.rst | 8 packets are stored in the buffer. Packet buffer works under assumption that there 27 * Dedicated, optimized API for storing short packets. 56 Packet buffer space contains free space, valid user packets and internal skip 57 packets. Internal skip packets indicates padding, e.g. at the end of the buffer. 72 If overwrite is enabled, oldest packets are dropped until requested amount of 73 space can be allocated. When packets are dropped ``busy`` flag is checked in the 75 skip packet is added before busy packet and packets following the busy packet 123 Performance optimized storing of small packets: 128 Note that since packets are written by value, they should already contain
|
/Zephyr-latest/tests/bsim/bluetooth/audio_samples/cap/initiator/src/ |
D | cap_initiator_sample_test.c | 18 #define PASS_THRESHOLD 100 /* Audio packets */ 43 * If in WAIT_TIME seconds we did not get enough packets through in test_cap_initiator_sample_tick() 51 bs_trace_info_time(2, "%" PRIu64 " unicast packets received, expected >= %i\n", in test_cap_initiator_sample_tick() 53 bs_trace_info_time(2, "%" PRIu64 " unicast packets sent, expected >= %i\n", in test_cap_initiator_sample_tick() 67 bs_trace_info_time(2, "%" PRIu64 " broadcast packets sent, expected >= %i\n", in test_cap_initiator_sample_tick() 86 "many audio packets have been received correctly",
|
/Zephyr-latest/samples/bluetooth/iso_connected_benchmark/ |
D | README.rst | 60 packets:: 76 …[00:00:17.774,902] <inf> iso_connected: Overall : Received 100/100 (100.00%) - Total packets l… 77 …[00:00:17.774,932] <inf> iso_connected: Current Conn: Received 100/100 (100.00%) - Total packets l… 78 …[00:00:17.774,963] <inf> iso_connected: Latest 1000 : Received 100/100 (100.00%) - Total packets l… 81 …[00:00:18.532,409] <inf> iso_connected: Overall : Received 200/200 (100.00%) - Total packets l… 82 …[00:00:18.532,470] <inf> iso_connected: Current Conn: Received 200/200 (100.00%) - Total packets l… 83 …[00:00:18.532,501] <inf> iso_connected: Latest 1000 : Received 200/200 (100.00%) - Total packets l… 92 packets:: 111 …[00:00:05.072,052] <inf> iso_connected: Overall : Received 100/100 (100.00%) - Total packets l… 112 …[00:00:05.072,113] <inf> iso_connected: Current Conn: Received 100/100 (100.00%) - Total packets l… [all …]
|
/Zephyr-latest/tests/bsim/bluetooth/audio_samples/cap/acceptor/src/ |
D | cap_acceptor_sample_test.c | 18 #define PASS_THRESHOLD 100 /* Audio packets */ 44 * If in WAIT_TIME seconds we did not get enough packets through in test_cap_acceptor_sample_tick() 52 bs_trace_info_time(2, "%" PRIu64 " unicast packets received, expected >= %i\n", in test_cap_acceptor_sample_tick() 54 bs_trace_info_time(2, "%" PRIu64 " unicast packets sent, expected >= %i\n", in test_cap_acceptor_sample_tick() 68 bs_trace_info_time(2, "%" PRIu64 " broadcast packets received, expected >= %i\n", in test_cap_acceptor_sample_tick() 87 "many audio packets have been received correctly",
|
/Zephyr-latest/subsys/net/ip/ |
D | Kconfig.ipv4 | 10 able to send and receive IPv4 network packets. 46 int "Initial IPv4 time to live value for unicast packets" 56 int "Initial IPv4 time to live value for multicast packets" 64 The default is 1 (same as in Linux) which means that multicast packets 81 If set, then accept UDP packets destined to non-standard 128 outgoing packets to the MTU (1500 bytes for Ethernet). If you enable 130 that larger packets can be received. 133 int "How many packets to reassemble at a time" 138 How many fragmented IPv4 packets can be waiting reassembly 151 You can increase this value if you expect packets with more
|
/Zephyr-latest/samples/bluetooth/iso_receive/ |
D | Kconfig | 13 Only print the packet report once in a given interval of ISO packets. 16 bool "Align report interval with incoming packets" 18 Align interval-counter with packet number from incoming ISO packets.
|
/Zephyr-latest/drivers/ethernet/dwc_xgmac/ |
D | Kconfig | 56 Enable receive checksum offload for TCP/UDP/IP packets 62 Enable transmit checksum offload for TCP/UDP/IP packets 73 Enable Hardware support for L2 filtering of packets. 78 Enable Hardware support for L3 L4 filtering of packets.
|
/Zephyr-latest/drivers/ethernet/ |
D | Kconfig.dwmac | 46 A higher number allows for more packets to be queued which may 59 Received packets are spread across the required number of fragment 63 A higher number allows for more packets to be received without 66 dropped packets.
|
/Zephyr-latest/samples/bluetooth/broadcaster/ |
D | README.rst | 5 Periodically send out advertising packets with a manufacturer data element. 11 The application will periodically send out advertising packets with 13 indicating how many advertising packets the device has sent
|
/Zephyr-latest/tests/bluetooth/hci_uart_async/src/ |
D | test_hci_uart_async.c | 95 /** This FIFO holds the references to all h2c packets the DUT has sent 100 * should use #bt_recv to send c2h packets to the DUT. 177 * connection setup etc and use dummy command-packets. in ZTEST() 191 * But the 'HCI Host Number of Completed Packets' command is in ZTEST() 195 * We now send several 'HCI Host Number of Completed Packets' in ZTEST() 196 * packets before handling any commands in the controller. This in ZTEST() 199 * the special packets out-of-order in real-time. in ZTEST() 208 LOG_DBG("All h2c packets queued on UART"); in ZTEST() 210 /* Then, we check that all packets are delivered without loss. */ in ZTEST() 240 /* Expect all the 'HCI Host Number of Completed Packets'. */ in ZTEST() [all …]
|
/Zephyr-latest/tests/bsim/bluetooth/audio_samples/bap_broadcast_sink/src/ |
D | broadcast_sink_test.c | 16 #define PASS_THRESHOLD 100 /* Audio packets */ 42 * If in WAIT_TIME seconds we did not get enough packets through in test_broadcast_sink_sample_tick() 48 bs_trace_info_time(2, "%"PRIu64" packets received, expected >= %i\n", in test_broadcast_sink_sample_tick() 66 "many ISO packets have been received correctly",
|
/Zephyr-latest/tests/bsim/bluetooth/audio_samples/bap_unicast_client/src/ |
D | unicast_client_sample_test.c | 16 #define PASS_THRESHOLD 100 /* Audio packets */ 42 * If in WAIT_TIME seconds we did not get enough packets through in test_unicast_client_sample_tick() 48 bs_trace_info_time(2, "%"PRIu64" packets received, expected >= %i\n", in test_unicast_client_sample_tick() 66 "many audio packets have been received correctly",
|
/Zephyr-latest/tests/bsim/bluetooth/samples/central_hr_peripheral_hr/src/ |
D | sample_test.c | 16 #define PASS_THRESHOLD 5 /* packets */ 42 * If in WAIT_TIME seconds we did not get enough packets through in test_sample_tick() 48 bs_trace_info_time(2, "%"PRIu64" packets received, expected >= %i\n", in test_sample_tick() 65 "many packets have been received correctly",
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | capture.rst | 26 In cooked mode capture, arbitrary network packets can be captured and there 28 packets in PPP can be captured, as the HDLC L2 layer data is stripped away when 36 mode captured packets are written by the cooked mode capture API. 46 The packets received by the ``cooked`` interface via the ``any`` interface are 91 cooked capture packets are written by the capture API to sink interface 1. 92 The packets propagate to interface 2 because it is linked to the first interface. 93 The ``net capture enable 2`` net-shell command will cause the packets sent to 95 the packets and tunnels them to peer via the Ethernet interface 3.
|
/Zephyr-latest/samples/net/sockets/http_server/src/static_web_resources/ |
D | index.html | 32 <td>IPv6 packets received</td> 36 <td>IPv6 packets sent</td> 40 <td>IPv4 packets received</td> 44 <td>IPv4 packets sent</td>
|
/Zephyr-latest/tests/bsim/net/sockets/echo_test/src/ |
D | echo_test.c | 23 #define PASS_THRESHOLD 100 /* Packets */ 49 * If in WAIT_TIME seconds we did not get enough packets through in test_echo_client_tick() 62 bs_trace_info_time(2, "%i packets received, expected >= %i\n", in test_echo_client_tick() 80 "many packets have been exchanged correctly",
|