28 lines
691 B
Plaintext
28 lines
691 B
Plaintext
|
#
|
||
|
# 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 # PRaw Socket Support
|