Kconfig 706 B

1234567891011121314151617181920212223242526272829303132
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see the file kconfig-language.txt in the NuttX tools repository.
  4. #
  5. menu "Unix Domain Socket Support"
  6. depends on NET && !DISABLE_PSEUDOFS_OPERATIONS
  7. config NET_LOCAL
  8. bool "Unix domain (local) sockets"
  9. default n
  10. select PIPES
  11. ---help---
  12. Enable or disable Unix domain (aka Local) sockets.
  13. if NET_LOCAL
  14. config NET_LOCAL_STREAM
  15. bool "Unix domain stream sockets"
  16. default y
  17. ---help---
  18. Enable support for Unix domain SOCK_STREAM type sockets
  19. config NET_LOCAL_DGRAM
  20. bool "Unix domain datagram sockets"
  21. default y
  22. ---help---
  23. Enable support for Unix domain SOCK_DGRAM type sockets
  24. endif # NET_LOCAL
  25. endmenu # Unix Domain Sockets