1# Private config options for packet socket sample app
2
3# Copyright (c) 2020 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6mainmenu "Networking packet socket sample application"
7
8config NET_SAMPLE_SEND_WAIT_TIME
9	int "Wait time between sent packets (in ms)"
10	default 5000
11	help
12	  By default the application will send a packet every 5 seconds.
13	  If set to 0, then the packets are sent as fast as possible, which
14	  will stress test the network stack.
15
16config NET_SAMPLE_ENABLE_PACKET_DGRAM
17	bool "Use AF_PACKET with SOCK_DGRAM"
18	depends on NET_SOCKETS_PACKET_DGRAM
19	default y
20	help
21	  This will strip Ethernet header from received packets
22	  and insert Ethernet header to sent packets.
23
24config NET_SAMPLE_DESTINATION_ADDR
25	string "Destination Ethernet MAC address"
26	depends on NET_SOCKETS_PACKET_DGRAM
27	default "00:11:22:33:44:55"
28	help
29	  Where to send the Ethernet frames.
30
31source "Kconfig.zephyr"
32