diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-07-02 16:02:37 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-07-02 16:02:37 -0700 |
| commit | ac1cdf1a4a2bff6d2ad469735d6825881f5045d9 (patch) | |
| tree | f7da80b51ad15a33786dbf85d6733b7a300956d6 /src/transport/ipc | |
| parent | 9f5fa865f252f6d71f2d92181b17c038e2c28a8a (diff) | |
| download | nng-ac1cdf1a4a2bff6d2ad469735d6825881f5045d9.tar.gz nng-ac1cdf1a4a2bff6d2ad469735d6825881f5045d9.tar.bz2 nng-ac1cdf1a4a2bff6d2ad469735d6825881f5045d9.zip | |
More aio name cleanups.
Diffstat (limited to 'src/transport/ipc')
| -rw-r--r-- | src/transport/ipc/ipc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/transport/ipc/ipc.c b/src/transport/ipc/ipc.c index 8cb24b28..760be794 100644 --- a/src/transport/ipc/ipc.c +++ b/src/transport/ipc/ipc.c @@ -252,7 +252,7 @@ nni_ipc_cancel_tx(nni_aio *aio) static int -nni_ipc_pipe_aio_send(void *arg, nni_aio *aio) +nni_ipc_pipe_send(void *arg, nni_aio *aio) { nni_ipc_pipe *pipe = arg; nni_msg *msg = aio->a_msg; @@ -300,7 +300,7 @@ nni_ipc_cancel_rx(nni_aio *aio) static int -nni_ipc_pipe_aio_recv(void *arg, nni_aio *aio) +nni_ipc_pipe_recv(void *arg, nni_aio *aio) { nni_ipc_pipe *pipe = arg; @@ -525,8 +525,8 @@ nni_ipc_ep_accept(void *arg, void **pipep) static nni_tran_pipe nni_ipc_pipe_ops = { .p_fini = nni_ipc_pipe_fini, - .p_aio_send = nni_ipc_pipe_aio_send, - .p_aio_recv = nni_ipc_pipe_aio_recv, + .p_send = nni_ipc_pipe_send, + .p_recv = nni_ipc_pipe_recv, .p_close = nni_ipc_pipe_close, .p_peer = nni_ipc_pipe_peer, .p_getopt = nni_ipc_pipe_getopt, |
