diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/transport.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/core/transport.c b/src/core/transport.c index 6c872b81..94e5caa1 100644 --- a/src/core/transport.c +++ b/src/core/transport.c @@ -9,12 +9,25 @@ // #include "core/nng_impl.h" + +#ifdef NNG_TRANSPORT_INPROC #include "transport/inproc/inproc.h" +#endif +#ifdef NNG_TRANSPORT_IPC #include "transport/ipc/ipc.h" +#endif +#ifdef NNG_TRANSPORT_TCP #include "transport/tcp/tcp.h" +#endif +#ifdef NNG_TRANSPORT_TLS #include "transport/tls/tls.h" +#endif +#ifdef NNG_TRANSPORT_WS #include "transport/ws/websocket.h" +#endif +#ifdef NNG_TRANSPORT_ZEROTIER #include "transport/zerotier/zerotier.h" +#endif #include <stdio.h> #include <string.h> |
