You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
512 B
23 lines
512 B
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config EXAMPLES_USTREAM
|
|
tristate "Unix domain stream example"
|
|
default n
|
|
depends on NET_LOCAL
|
|
---help---
|
|
Enable the Unix domain SOCK_STREAM test example
|
|
|
|
if EXAMPLES_USTREAM
|
|
|
|
config EXAMPLES_USTREAM_ADDR
|
|
string "Unix domain address"
|
|
default "/dev/fifo"
|
|
|
|
config EXAMPLES_USTREAM_USE_POLL
|
|
bool "Use poll for checking socket readiness"
|
|
default n
|
|
|
|
endif # EXAMPLES_USTREAM
|
|
|