2015-01-27 20:41:45 +01:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:14:53 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2015-01-27 20:41:45 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
config EXAMPLES_USTREAM
|
2018-09-03 17:29:56 +02:00
|
|
|
tristate "Unix domain stream example"
|
2015-01-27 20:41:45 +01:00
|
|
|
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"
|
2015-01-30 16:07:22 +01:00
|
|
|
default "/dev/fifo"
|
2015-01-27 20:41:45 +01:00
|
|
|
|
2015-05-12 15:41:12 +02:00
|
|
|
config EXAMPLES_USTREAM_USE_POLL
|
|
|
|
bool "Use poll for checking socket readiness"
|
|
|
|
default n
|
|
|
|
|
2015-01-27 20:41:45 +01:00
|
|
|
endif # EXAMPLES_USTREAM
|