diff options
| author | Garrett D'Amore <garrett@damore.org> | 2021-07-10 17:01:58 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2021-07-10 17:03:24 -0700 |
| commit | ba34c3a22a9244f5b2afca3c7ca766503ed63f16 (patch) | |
| tree | b45b70e760dd8bdf561213cfe9df5ee143f9b5ab /src/core/sockimpl.h | |
| parent | 16597cc81cc9fbdfd15349be1b0bd57fb9392241 (diff) | |
| download | nng-ba34c3a22a9244f5b2afca3c7ca766503ed63f16.tar.gz nng-ba34c3a22a9244f5b2afca3c7ca766503ed63f16.tar.bz2 nng-ba34c3a22a9244f5b2afca3c7ca766503ed63f16.zip | |
More work on moving SP stuff out of common. Remove unused defs.
Diffstat (limited to 'src/core/sockimpl.h')
| -rw-r--r-- | src/core/sockimpl.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/sockimpl.h b/src/core/sockimpl.h index 638a3bfd..e9bf69fb 100644 --- a/src/core/sockimpl.h +++ b/src/core/sockimpl.h @@ -16,8 +16,8 @@ // are subject to change at any time. struct nni_dialer { - nni_tran_dialer_ops d_ops; // transport ops - nni_tran * d_tran; // transport pointer + nni_sp_dialer_ops d_ops; // transport ops + nni_sp_tran * d_tran; // transport pointer void * d_data; // transport private uint32_t d_id; // endpoint id nni_list_node d_node; // per socket list @@ -59,8 +59,8 @@ struct nni_dialer { }; struct nni_listener { - nni_tran_listener_ops l_ops; // transport ops - nni_tran * l_tran; // transport pointer + nni_sp_listener_ops l_ops; // transport ops + nni_sp_tran * l_tran; // transport pointer void * l_data; // transport private uint32_t l_id; // endpoint id nni_list_node l_node; // per socket list @@ -95,7 +95,7 @@ struct nni_listener { struct nni_pipe { uint32_t p_id; - nni_tran_pipe_ops p_tran_ops; + nni_sp_pipe_ops p_tran_ops; nni_proto_pipe_ops p_proto_ops; size_t p_size; void * p_tran_data; |
