summaryrefslogblamecommitdiff
path: root/nuttx/net/pkt/Kconfig
blob: c20273a45b338fb9d2bb27deadb377bc79418f33 (plain) (tree)

























                                                                                
                            
#
# 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