diff options
author | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2022-10-06 13:29:23 +0300 |
---|---|---|
committer | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2022-10-10 11:54:30 +0300 |
commit | 9f22ba9b0bc726791d182871cebae4990e341194 (patch) | |
tree | 882581a8e415a8358e7820728a99106230df3d3b | |
parent | 759eb24fbdc88d070cf4bfcefe53de4edbc07a41 (diff) | |
download | libmicrohttpd-9f22ba9b0bc726791d182871cebae4990e341194.tar.gz libmicrohttpd-9f22ba9b0bc726791d182871cebae4990e341194.zip |
microhttpd.h: improved doxy for MHD_USE_THREAD_PER_CONNECTION
-rw-r--r-- | src/include/microhttpd.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h index 41c5d2ce..598b0d67 100644 --- a/src/include/microhttpd.h +++ b/src/include/microhttpd.h | |||
@@ -1245,6 +1245,11 @@ enum MHD_FLAG | |||
1245 | /** | 1245 | /** |
1246 | * Run using one thread per connection. | 1246 | * Run using one thread per connection. |
1247 | * Must be used only with #MHD_USE_INTERNAL_POLLING_THREAD. | 1247 | * Must be used only with #MHD_USE_INTERNAL_POLLING_THREAD. |
1248 | * | ||
1249 | * If #MHD_USE_ITC is also not used, closed and expired connections may only | ||
1250 | * be cleaned up internally when a new connection is received. | ||
1251 | * Consider adding of #MHD_USE_ITC flag to have faster internal cleanups | ||
1252 | * at very minor increase in system resources usage. | ||
1248 | */ | 1253 | */ |
1249 | MHD_USE_THREAD_PER_CONNECTION = 4, | 1254 | MHD_USE_THREAD_PER_CONNECTION = 4, |
1250 | 1255 | ||