Fix of mixup bwtween SOMAXCONN and SO_MAXCONN.

Furthermore, make SO_MAXCONN the first choice, since that's the standard
(as far as I know).
This commit is contained in:
Richard Levitte
2002-03-29 23:48:29 +00:00
parent ca3bba36c4
commit 4a579233b4

View File

@@ -72,9 +72,9 @@
#endif
#ifdef SO_MAXCONN
#define MAX_LISTEN SOMAXCONN
#elif defined(SO_MAXCONN)
#define MAX_LISTEN SO_MAXCONN
#elif defined(SOMAXCONN)
#define MAX_LISTEN SOMAXCONN
#else
#define MAX_LISTEN 32
#endif