From f81c9175dfb01e7f609c1f27d95216aac39f5a90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Thu, 20 Jul 2017 18:48:08 +0200 Subject: [PATCH] Mention that TCPListenOptions.distribute is deprecated. --- source/vibe/core/net.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/vibe/core/net.d b/source/vibe/core/net.d index 897089c..dfbc17e 100644 --- a/source/vibe/core/net.d +++ b/source/vibe/core/net.d @@ -894,7 +894,7 @@ struct UDPConnection { enum TCPListenOptions { /// Don't enable any particular option defaults = 0, - /// Causes incoming connections to be distributed across the thread pool + /// Deprecated: causes incoming connections to be distributed across the thread pool distribute = 1<<0, /// Disables automatic closing of the connection when the connection callback exits disableAutoClose = 1<<1,