aboutsummaryrefslogtreecommitdiff
path: root/src/core/sockfd.c
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2025-10-11 06:50:54 -0700
committerGarrett D'Amore <garrett@damore.org>2025-10-11 06:50:54 -0700
commit2f24a1b1c93b8c45dce391ed0439131f9ad8cf28 (patch)
tree51065064cec7f35b900291fb2a101b7dbe3b6826 /src/core/sockfd.c
parentb98e03b26bfc593326bd7c1d56fd69626f6a93cb (diff)
downloadnng-2f24a1b1c93b8c45dce391ed0439131f9ad8cf28.tar.gz
nng-2f24a1b1c93b8c45dce391ed0439131f9ad8cf28.tar.bz2
nng-2f24a1b1c93b8c45dce391ed0439131f9ad8cf28.zip
fix includes for core
Diffstat (limited to 'src/core/sockfd.c')
-rw-r--r--src/core/sockfd.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/core/sockfd.c b/src/core/sockfd.c
index 651fcd63..3fa109a4 100644
--- a/src/core/sockfd.c
+++ b/src/core/sockfd.c
@@ -10,10 +10,13 @@
#include <stdint.h>
#include <string.h>
-#include <nng/nng.h>
-
-#include "core/nng_impl.h"
-#include "core/sockfd.h"
+#include "aio.h"
+#include "defs.h"
+#include "list.h"
+#include "options.h"
+#include "sockfd.h"
+#include "stream.h"
+#include "thread.h"
// We will accept up to this many FDs to be queued up for
// accept, before we start rejecting with NNG_ENOSPC. Once