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/sp/transport/inproc/inproc.c | |
| 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/sp/transport/inproc/inproc.c')
| -rw-r--r-- | src/sp/transport/inproc/inproc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sp/transport/inproc/inproc.c b/src/sp/transport/inproc/inproc.c index 84e2c625..1a666922 100644 --- a/src/sp/transport/inproc/inproc.c +++ b/src/sp/transport/inproc/inproc.c @@ -611,7 +611,7 @@ inproc_pipe_getopt( return (nni_getopt(inproc_pipe_options, name, arg, v, szp, t)); } -static nni_tran_pipe_ops inproc_pipe_ops = { +static nni_sp_pipe_ops inproc_pipe_ops = { .p_init = inproc_pipe_init, .p_fini = inproc_pipe_fini, .p_send = inproc_pipe_send, @@ -654,7 +654,7 @@ inproc_ep_setopt( return (nni_setopt(inproc_ep_options, name, arg, v, sz, t)); } -static nni_tran_dialer_ops inproc_dialer_ops = { +static nni_sp_dialer_ops inproc_dialer_ops = { .d_init = inproc_dialer_init, .d_fini = inproc_ep_fini, .d_connect = inproc_ep_connect, @@ -663,7 +663,7 @@ static nni_tran_dialer_ops inproc_dialer_ops = { .d_setopt = inproc_ep_setopt, }; -static nni_tran_listener_ops inproc_listener_ops = { +static nni_sp_listener_ops inproc_listener_ops = { .l_init = inproc_listener_init, .l_fini = inproc_ep_fini, .l_bind = inproc_ep_bind, @@ -675,7 +675,7 @@ static nni_tran_listener_ops inproc_listener_ops = { // This is the inproc transport linkage, and should be the only global // symbol in this entire file. -struct nni_tran nni_inproc_tran = { +struct nni_sp_tran nni_inproc_tran = { .tran_version = NNI_TRANSPORT_VERSION, .tran_scheme = "inproc", .tran_dialer = &inproc_dialer_ops, |
