summaryrefslogtreecommitdiff
path: root/nuttx/net/pkt/Kconfig
blob: c20273a45b338fb9d2bb27deadb377bc79418f33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

menu "Raw Socket Support"

config NET_PKT
	bool "Socket packet socket support"
	default n
	---help---
		Enable or disable support for packet sockets.

		Packet sockets allow receiving and transmitting frames without
		a transport protocol in between. Frames received are copied into
		a packet socket tap before they enter uIP. Data written into a
		packet socket will bypass uIP altogether and be placed in the
		transmission buffer of the network interface driver.

if NET_PKT

config NET_PKT_CONNS
	int "Max packet sockets"
	default 1

endif # NET_PKT
endmenu # Raw Socket Support