aboutsummaryrefslogtreecommitdiff
path: root/src/core/pipe.h
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2017-01-02 12:57:53 -0800
committerGarrett D'Amore <garrett@damore.org>2017-01-02 12:57:53 -0800
commitf0ad2ab1123c8c5d4e34790cab7b9bf1e2f615b4 (patch)
tree0a813b44e6e1a92a6533e052855b89129cbe301a /src/core/pipe.h
parent063b7b4724697883206213d905707d5151ef130c (diff)
downloadnng-f0ad2ab1123c8c5d4e34790cab7b9bf1e2f615b4.tar.gz
nng-f0ad2ab1123c8c5d4e34790cab7b9bf1e2f615b4.tar.bz2
nng-f0ad2ab1123c8c5d4e34790cab7b9bf1e2f615b4.zip
Transport renaming.
Diffstat (limited to 'src/core/pipe.h')
-rw-r--r--src/core/pipe.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/core/pipe.h b/src/core/pipe.h
index 70dd01b1..d3669235 100644
--- a/src/core/pipe.h
+++ b/src/core/pipe.h
@@ -18,18 +18,18 @@
#include "core/transport.h"
struct nng_pipe {
- uint32_t p_id;
- 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;
- nni_sock * p_sock;
- nni_endpt * p_ep;
- int p_reap;
- int p_active;
- nni_thr p_send_thr;
- nni_thr p_recv_thr;
+ uint32_t p_id;
+ nni_tran_pipe 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;
+ nni_sock * p_sock;
+ nni_endpt * p_ep;
+ int p_reap;
+ int p_active;
+ nni_thr p_send_thr;
+ nni_thr p_recv_thr;
};
// Pipe operations that protocols use.