aboutsummaryrefslogtreecommitdiff
path: root/src/core/transport.h
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2017-01-02 12:36:16 -0800
committerGarrett D'Amore <garrett@damore.org>2017-01-02 12:36:16 -0800
commit063b7b4724697883206213d905707d5151ef130c (patch)
treee5e4ae57348a7aa8b2a2bbe0ed491a8531313a4b /src/core/transport.h
parentd42198bbc36e525e50bb32f5efeda63875c5b24f (diff)
downloadnng-063b7b4724697883206213d905707d5151ef130c.tar.gz
nng-063b7b4724697883206213d905707d5151ef130c.tar.bz2
nng-063b7b4724697883206213d905707d5151ef130c.zip
Transport renaming phase 1.
Diffstat (limited to 'src/core/transport.h')
-rw-r--r--src/core/transport.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/transport.h b/src/core/transport.h
index c0bade07..c738929c 100644
--- a/src/core/transport.h
+++ b/src/core/transport.h
@@ -13,7 +13,7 @@
// Transport implementation details. Transports must implement the
// interfaces in this file.
-struct nni_transport {
+struct nni_tran {
// tran_scheme is the transport scheme, such as "tcp" or "inproc".
const char * tran_scheme;
@@ -119,8 +119,8 @@ struct nni_pipe_ops {
// These APIs are used by the framework internally, and not for use by
// transport implementations.
-extern nni_transport *nni_transport_find(const char *);
-extern void nni_transport_init(void);
-extern void nni_transport_fini(void);
+extern nni_tran *nni_tran_find(const char *);
+extern void nni_tran_init(void);
+extern void nni_tran_fini(void);
#endif // CORE_TRANSPORT_H