aboutsummaryrefslogtreecommitdiff
path: root/src/core/pipe.h
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2017-07-14 19:43:09 -0700
committerGarrett D'Amore <garrett@damore.org>2017-07-14 19:43:09 -0700
commit031f7f441f88379d5359a6e96cdd2fe296052070 (patch)
tree6ce377b449fb1922ad5461265697d0df991c4837 /src/core/pipe.h
parent36746b4f6615607510eedb8e5d168b0fc4897ded (diff)
downloadnng-031f7f441f88379d5359a6e96cdd2fe296052070.tar.gz
nng-031f7f441f88379d5359a6e96cdd2fe296052070.tar.bz2
nng-031f7f441f88379d5359a6e96cdd2fe296052070.zip
Implemented asynchronous (fully) accept.
This logic leaves a race condition in the dial side, which will be fixed with a subsequent change to convert that to fully asynchronous as well.
Diffstat (limited to 'src/core/pipe.h')
-rw-r--r--src/core/pipe.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/pipe.h b/src/core/pipe.h
index 2f56e788..990dac9d 100644
--- a/src/core/pipe.h
+++ b/src/core/pipe.h
@@ -60,7 +60,7 @@ extern void nni_pipe_stop(nni_pipe *);
// Used only by the socket core - as we don't wish to expose the details
// of the pipe structure outside of pipe.c.
-extern int nni_pipe_create(nni_pipe **, nni_ep *, nni_sock *, nni_tran *);
+extern int nni_pipe_create(nni_pipe **, nni_sock *, nni_tran *);
extern uint16_t nni_pipe_proto(nni_pipe *);
extern uint16_t nni_pipe_peer(nni_pipe *);