aboutsummaryrefslogtreecommitdiff
path: root/src/core/sockimpl.h
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2025-01-05 08:39:55 -0800
committerGarrett D'Amore <garrett@damore.org>2025-01-05 08:39:55 -0800
commitf08a488c30ff102c29f589c138bae29d91dccb2a (patch)
tree4e8ffacabb0b90537ac97c806e27f53cb4c3547f /src/core/sockimpl.h
parentf77e5a5ec7f8b1373eeda0ea56f47137daf40330 (diff)
downloadnng-f08a488c30ff102c29f589c138bae29d91dccb2a.tar.gz
nng-f08a488c30ff102c29f589c138bae29d91dccb2a.tar.bz2
nng-f08a488c30ff102c29f589c138bae29d91dccb2a.zip
Liberally apply some UWYI (use what you include) to header files
Diffstat (limited to 'src/core/sockimpl.h')
-rw-r--r--src/core/sockimpl.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/core/sockimpl.h b/src/core/sockimpl.h
index 92c0bb69..5d41e8d7 100644
--- a/src/core/sockimpl.h
+++ b/src/core/sockimpl.h
@@ -1,5 +1,5 @@
//
-// Copyright 2024 Staysail Systems, Inc. <info@staysail.tech>
+// Copyright 2025 Staysail Systems, Inc. <info@staysail.tech>
// Copyright 2018 Capitar IT Group BV <info@capitar.com>
//
// This software is supplied under the terms of the MIT License, a
@@ -11,6 +11,20 @@
#ifndef CORE_SOCKIMPL_H
#define CORE_SOCKIMPL_H
+#include "defs.h"
+
+#include "aio.h"
+#include "dialer.h"
+#include "list.h"
+#include "listener.h"
+#include "protocol.h"
+#include "reap.h"
+#include "refcnt.h"
+#include "stats.h"
+#include "url.h"
+
+#include "sp/transport.h"
+
// This file contains stuff shared within the core between sockets, endpoints,
// and pipes. This must not be exposed to other subsystems -- these internals
// are subject to change at any time.