diff options
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, |
