From 83478818df75ce54c3f499423969512899ae09e5 Mon Sep 17 00:00:00 2001 From: yrutschle Date: Sun, 22 May 2022 22:33:27 +0200 Subject: [PATCH] update comment to mention sslh-ev --- sslh-select.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sslh-select.c b/sslh-select.c index 2fcc0af..82620d4 100644 --- a/sslh-select.c +++ b/sslh-select.c @@ -25,8 +25,8 @@ * https://daniel.haxx.se/docs/poll-vs-select.html suggests that over a few * hundred file descriptors, both become very slow, so there is little * incentive to move to poll() to support more than FD_SETSIZE (which is 1024 - * on many Linux. To support large numbers of descriptors, either use the fork - * version, or we'll have to write a new version based on libev. */ + * on many Linux. To support large numbers of descriptors efficiently, either use sslh-fork + * or sslh-ev. */ #define __LINUX__