navtreedata.js 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. var NAVTREE =
  2. [
  3. [ "libwebsockets", "index.html", [
  4. [ "Libwebsockets API introduction", "index.html", null ],
  5. [ "Notes about building lws", "md_README.build.html", [
  6. [ "Introduction to CMake", "md_README.build.html#cm", null ],
  7. [ "Building the library and test apps", "md_README.build.html#build1", null ],
  8. [ "Building on Unix:", "md_README.build.html#bu", null ],
  9. [ "Quirk of cmake", "md_README.build.html#cmq", null ],
  10. [ "Building on Windows (Visual Studio)", "md_README.build.html#cmw", null ],
  11. [ "Building on Windows (MinGW)", "md_README.build.html#cmwmgw", null ],
  12. [ "Building on mbed3", "md_README.build.html#mbed3", null ],
  13. [ "Setting compile options", "md_README.build.html#cmco", [
  14. [ "Command line", "md_README.build.html#cmcocl", null ],
  15. [ "Unix GUI", "md_README.build.html#cmcoug", null ],
  16. [ "Windows GUI", "md_README.build.html#cmcowg", null ]
  17. ] ],
  18. [ "wolfSSL/CyaSSL replacement for OpenSSL", "md_README.build.html#wolf", null ],
  19. [ "Compiling libwebsockets with wolfSSL", "md_README.build.html#wolf1", null ],
  20. [ "Compiling libwebsockets with CyaSSL", "md_README.build.html#cya", null ],
  21. [ "Building plugins outside of lws itself", "md_README.build.html#extplugins", null ],
  22. [ "Reproducing HTTP2.0 tests", "md_README.build.html#http2rp", null ],
  23. [ "Cross compiling", "md_README.build.html#cross", null ],
  24. [ "Memory efficiency", "md_README.build.html#mem", null ]
  25. ] ],
  26. [ "Debugging problems", "md_README.problems.html", null ],
  27. [ "Notes about lwsws", "md_README.lwsws.html", [
  28. [ "Libwebsockets Web Server", "md_README.lwsws.html#lwsws", null ],
  29. [ "Build", "md_README.lwsws.html#lwswsb", null ],
  30. [ "Lwsws Configuration", "md_README.lwsws.html#lwswsc", null ],
  31. [ "Lwsws Vhosts", "md_README.lwsws.html#lwswsv", null ],
  32. [ "Lwsws Vhost name and port sharing", "md_README.lwsws.html#lwswsvn", null ],
  33. [ "Lwsws Protocols", "md_README.lwsws.html#lwswspr", null ],
  34. [ "Lwsws Other vhost options", "md_README.lwsws.html#lwswsovo", null ],
  35. [ "Lwsws Mounts", "md_README.lwsws.html#lwswsm", null ],
  36. [ "Lwsws Other mount options", "md_README.lwsws.html#lwswsomo", null ],
  37. [ "Lwsws Plugins", "md_README.lwsws.html#lwswspl", null ],
  38. [ "Additional plugin search paths", "md_README.lwsws.html#lwswsplaplp", null ],
  39. [ "lws-server-status plugin", "md_README.lwsws.html#lwswsssp", null ],
  40. [ "Lwsws Integration with Systemd", "md_README.lwsws.html#lwswssysd", null ],
  41. [ "Lwsws Integration with logrotate", "md_README.lwsws.html#lwswslr", null ]
  42. ] ],
  43. [ "Notes about coding with lws", "md_README.coding.html", [
  44. [ "Daemonization", "md_README.coding.html#dae", null ],
  45. [ "Maximum number of connections", "md_README.coding.html#conns", null ],
  46. [ "Libwebsockets is singlethreaded", "md_README.coding.html#evtloop", null ],
  47. [ "Only send data when socket writeable", "md_README.coding.html#writeable", null ],
  48. [ "Do not rely on only your own WRITEABLE requests appearing", "md_README.coding.html#otherwr", null ],
  49. [ "Closing connections from the user side", "md_README.coding.html#closing", null ],
  50. [ "Fragmented messages", "md_README.coding.html#frags", null ],
  51. [ "Debug Logging", "md_README.coding.html#debuglog", null ],
  52. [ "External Polling Loop support", "md_README.coding.html#extpoll", null ],
  53. [ "Using with in c++ apps", "md_README.coding.html#cpp", null ],
  54. [ "Availability of header information", "md_README.coding.html#headerinfo", null ],
  55. [ "TCP Keepalive", "md_README.coding.html#ka", null ],
  56. [ "Optimizing SSL connections", "md_README.coding.html#sslopt", null ],
  57. [ "Async nature of client connections", "md_README.coding.html#clientasync", null ],
  58. [ "Lws platform-independent file access apis", "md_README.coding.html#fileapi", null ],
  59. [ "ECDH Support", "md_README.coding.html#ecdh", null ],
  60. [ "SMP / Multithreaded service", "md_README.coding.html#smp", null ],
  61. [ "Libev / Libuv support", "md_README.coding.html#libevuv", null ],
  62. [ "Extension option control from user code", "md_README.coding.html#extopts", null ],
  63. [ "Client connections as HTTP[S] rather than WS[S]", "md_README.coding.html#httpsclient", null ],
  64. [ "Using lws vhosts", "md_README.coding.html#vhosts", null ],
  65. [ "How lws matches hostname or SNI to a vhost", "md_README.coding.html#sni", null ],
  66. [ "Using lws mounts on a vhost", "md_README.coding.html#mounts", null ],
  67. [ "Operation of LWSMPRO_CALLBACK mounts", "md_README.coding.html#mountcallback", null ],
  68. [ "Dimming webpage when connection lost", "md_README.coding.html#dim", null ]
  69. ] ],
  70. [ "Notes about generic-sessions Plugin", "md_README.generic-sessions.html", [
  71. [ "Enabling lwsgs for build", "md_README.generic-sessions.html#gseb", null ],
  72. [ "lwsgs Introduction", "md_README.generic-sessions.html#gsi", null ],
  73. [ "Lwsgs Integration to HTML", "md_README.generic-sessions.html#gsin", null ],
  74. [ "Lwsgs Overall Flow@", "md_README.generic-sessions.html#gsof", null ],
  75. [ "Lwsgs Configuration", "md_README.generic-sessions.html#gsconf", null ],
  76. [ "Lwsgs Password Confounder", "md_README.generic-sessions.html#gspwc", null ],
  77. [ "Lwsgs Preparing the db directory", "md_README.generic-sessions.html#gsprep", null ],
  78. [ "Lwsgs Email configuration", "md_README.generic-sessions.html#gsrmail", null ],
  79. [ "Lwsgs Integration with another protocol", "md_README.generic-sessions.html#gsap", null ]
  80. ] ],
  81. [ "Notes about generic-table", "md_README.generic-table.html", [
  82. [ "What is generic-table?", "md_README.generic-table.html#gtint", null ],
  83. [ "Enabling for build", "md_README.generic-table.html#gteb", null ],
  84. [ "Integrating with your html", "md_README.generic-table.html#gtinth", null ],
  85. [ "Lwsgt constructor", "md_README.generic-table.html#gtc", null ],
  86. [ "Lwsgt click handling function", "md_README.generic-table.html#gtclick", null ],
  87. [ "Generic-table JSON", "md_README.generic-table.html#gtgj", null ],
  88. [ "Setting up protocol-lws-table-dirlisting", "md_README.generic-table.html#gtdirl", null ]
  89. ] ],
  90. [ "Overview of lws test apps", "md_README.test-apps.html", [
  91. [ "Testing server with a browser", "md_README.test-apps.html#tsb", null ],
  92. [ "Running test server as a Daemon", "md_README.test-apps.html#tsd", null ],
  93. [ "Using SSL on the server side", "md_README.test-apps.html#sssl", null ],
  94. [ "Testing websocket client support", "md_README.test-apps.html#wscl", null ],
  95. [ "Choosing between test server variations", "md_README.test-apps.html#choosingts", null ],
  96. [ "Testing simple echo", "md_README.test-apps.html#echo", null ],
  97. [ "Testing SSL on the client side", "md_README.test-apps.html#tassl", null ],
  98. [ "Using the websocket ping utility", "md_README.test-apps.html#taping", null ],
  99. [ "fraggle Fraggle test app", "md_README.test-apps.html#ta", null ],
  100. [ "proxy support", "md_README.test-apps.html#taproxy", null ],
  101. [ "debug logging", "md_README.test-apps.html#talog", null ],
  102. [ "Websocket version supported", "md_README.test-apps.html#ws13", null ],
  103. [ "Latency Tracking", "md_README.test-apps.html#latency", null ],
  104. [ "Autobahn Test Suite", "md_README.test-apps.html#autobahn", null ],
  105. [ "Autobahn Test Notes", "md_README.test-apps.html#autobahnnotes", null ]
  106. ] ],
  107. [ "Deprecated List", "deprecated.html", null ],
  108. [ "Modules", "modules.html", "modules" ],
  109. [ "Data Structures", "annotated.html", [
  110. [ "Data Structures", "annotated.html", "annotated_dup" ],
  111. [ "Data Structure Index", "classes.html", null ],
  112. [ "Class Hierarchy", "hierarchy.html", "hierarchy" ],
  113. [ "Data Fields", "functions.html", [
  114. [ "All", "functions.html", null ],
  115. [ "Functions", "functions_func.html", null ],
  116. [ "Variables", "functions_vars.html", null ]
  117. ] ]
  118. ] ],
  119. [ "Files", null, [
  120. [ "File List", "files.html", "files" ],
  121. [ "Globals", "globals.html", [
  122. [ "All", "globals.html", "globals_dup" ],
  123. [ "Functions", "globals_func.html", null ],
  124. [ "Typedefs", "globals_type.html", null ],
  125. [ "Enumerations", "globals_enum.html", null ],
  126. [ "Enumerator", "globals_eval.html", null ]
  127. ] ]
  128. ] ]
  129. ] ]
  130. ];
  131. var NAVTREEINDEX =
  132. [
  133. "annotated.html",
  134. "group__context-and-vhost.html#gga41c2d763f78cc248df3b9f8645dbd2a5aa0158b4e85420811e6b0f1378c6ded0f",
  135. "group__service.html#gad82efa5466d14a9f05aa06416375b28d",
  136. "group__wsstatus.html#gaeca4afc94b1f026034f99cbba37e2f85",
  137. "structlws__http__mount.html#aabec1a326780aafe11b977000983be0c"
  138. ];
  139. var SYNCONMSG = 'click to disable panel synchronisation';
  140. var SYNCOFFMSG = 'click to enable panel synchronisation';