aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-11-10 09:42:51 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-11-10 17:38:25 +0300
commit696e0401466e3b0b8da467acfa9d0c25faf4527d (patch)
treebc9e8312d446fca3b0d0b407ab4d7ef6b6e58fe3 /src/microhttpd/internal.h
parent068f4b6b8621e9093c6ee9290bf22143de5e8871 (diff)
downloadlibmicrohttpd-696e0401466e3b0b8da467acfa9d0c25faf4527d.tar.gz
libmicrohttpd-696e0401466e3b0b8da467acfa9d0c25faf4527d.zip
MHD_D_DOES_SCKT_FIT_FDSET_(): simplified macro
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r--src/microhttpd/internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index eb87c8e6..3d7d774a 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -2586,8 +2586,8 @@ struct MHD_Daemon
2586/** 2586/**
2587 * Check whether socket @a sckt fits fd_sets used by the daemon @a d 2587 * Check whether socket @a sckt fits fd_sets used by the daemon @a d
2588 */ 2588 */
2589#define MHD_D_DOES_SCKT_FIT_FDSET_(sckt,pset,d) \ 2589#define MHD_D_DOES_SCKT_FIT_FDSET_(sckt,d) \
2590 MHD_SCKT_FD_FITS_FDSET_SETSIZE_(sckt,pset,MHD_D_GET_FD_SETSIZE_(d)) 2590 MHD_SCKT_FD_FITS_FDSET_SETSIZE_(sckt,NULL,MHD_D_GET_FD_SETSIZE_(d))
2591 2591
2592 2592
2593#ifdef DAUTH_SUPPORT 2593#ifdef DAUTH_SUPPORT