diff options
| author | Garrett D'Amore <garrett@damore.org> | 2016-12-22 20:52:45 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2016-12-22 20:52:45 -0800 |
| commit | ee45cbf4498a3c1d1868469bdb0c767d66c278e4 (patch) | |
| tree | b9116256f12a54c90f92bf5cf215f3d4c8152126 /src/transport | |
| parent | 718de1828cc5b5256511c5b723360d499ae21c8f (diff) | |
| download | nng-ee45cbf4498a3c1d1868469bdb0c767d66c278e4.tar.gz nng-ee45cbf4498a3c1d1868469bdb0c767d66c278e4.tar.bz2 nng-ee45cbf4498a3c1d1868469bdb0c767d66c278e4.zip | |
Endpoint dialer implemented.
Diffstat (limited to 'src/transport')
| -rw-r--r-- | src/transport/inproc/inproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transport/inproc/inproc.c b/src/transport/inproc/inproc.c index a72d6b1e..a4da2b14 100644 --- a/src/transport/inproc/inproc.c +++ b/src/transport/inproc/inproc.c @@ -393,6 +393,7 @@ static struct nni_endpt_ops nni_inproc_ep_ops = { .ep_listen = nni_inproc_ep_listen, .ep_accept = nni_inproc_ep_accept, .ep_close = nni_inproc_ep_close, + .ep_pipe_ops = &nni_inproc_pipe_ops, .ep_setopt = NULL, .ep_getopt = NULL, }; @@ -402,7 +403,6 @@ static struct nni_endpt_ops nni_inproc_ep_ops = { struct nni_transport nni_inproc_transport = { .tran_scheme = "inproc", .tran_ep_ops = &nni_inproc_ep_ops, - .tran_pipe_ops = &nni_inproc_pipe_ops, .tran_init = nni_inproc_init, .tran_fini = nni_inproc_fini, }; |
