aboutsummaryrefslogtreecommitdiff
path: root/src/core/pipe.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/pipe.h
parentd42198bbc36e525e50bb32f5efeda63875c5b24f (diff)
downloadnng-063b7b4724697883206213d905707d5151ef130c.tar.gz
nng-063b7b4724697883206213d905707d5151ef130c.tar.bz2
nng-063b7b4724697883206213d905707d5151ef130c.zip
Transport renaming phase 1.
Diffstat (limited to 'src/core/pipe.h')
-rw-r--r--src/core/pipe.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/pipe.h b/src/core/pipe.h
index 193fd6c2..70dd01b1 100644
--- a/src/core/pipe.h
+++ b/src/core/pipe.h
@@ -14,12 +14,13 @@
// OUSIDE of the core is STRICTLY VERBOTEN. NO DIRECT ACCESS BY PROTOCOLS OR
// TRANSPORTS.
+#include "core/defs.h"
#include "core/transport.h"
struct nng_pipe {
uint32_t p_id;
- struct nni_pipe_ops p_ops;
- void * p_trandata;
+ struct nni_pipe_ops p_tran_ops;
+ void * p_tran_data;
void * p_pdata; // protocol specific data
size_t p_psize; // size of protocol data
nni_list_node p_node;