aboutsummaryrefslogtreecommitdiff
path: root/src/protocol/reqrep/rep.c
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2017-07-15 17:13:36 -0700
committerGarrett D'Amore <garrett@damore.org>2017-07-15 17:13:36 -0700
commit34ee6ece5adf86a324c89ed4dc96e77ad0dac893 (patch)
tree0f17bc7acb142173491422a9013842c74fb36836 /src/protocol/reqrep/rep.c
parentbef8ea546a7efd2726f51207e26eafc75979573d (diff)
downloadnng-34ee6ece5adf86a324c89ed4dc96e77ad0dac893.tar.gz
nng-34ee6ece5adf86a324c89ed4dc96e77ad0dac893.tar.bz2
nng-34ee6ece5adf86a324c89ed4dc96e77ad0dac893.zip
Bus, Req/Rep, and Surv/Resp should use aio_cancel instead of aio_stop.
Diffstat (limited to 'src/protocol/reqrep/rep.c')
-rw-r--r--src/protocol/reqrep/rep.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/protocol/reqrep/rep.c b/src/protocol/reqrep/rep.c
index f35726d8..1e4ee4ef 100644
--- a/src/protocol/reqrep/rep.c
+++ b/src/protocol/reqrep/rep.c
@@ -114,7 +114,7 @@ nni_rep_sock_close(void *arg)
{
nni_rep_sock *rep = arg;
- nni_aio_stop(&rep->aio_getq);
+ nni_aio_cancel(&rep->aio_getq, NNG_ECLOSED);
}
static int
@@ -191,10 +191,10 @@ nni_rep_pipe_stop(void *arg)
nni_rep_pipe *rp = arg;
nni_rep_sock *rep = rp->rep;
- nni_aio_stop(&rp->aio_getq);
- nni_aio_stop(&rp->aio_putq);
- nni_aio_stop(&rp->aio_send);
- nni_aio_stop(&rp->aio_recv);
+ nni_aio_cancel(&rp->aio_getq, NNG_ECANCELED);
+ nni_aio_cancel(&rp->aio_putq, NNG_ECANCELED);
+ nni_aio_cancel(&rp->aio_send, NNG_ECANCELED);
+ nni_aio_cancel(&rp->aio_recv, NNG_ECANCELED);
nni_msgq_close(rp->sendq);
nni_idhash_remove(rep->pipes, nni_pipe_id(rp->pipe));