diff options
| author | Garrett D'Amore <garrett@damore.org> | 2020-12-27 21:31:10 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2020-12-27 21:31:10 -0800 |
| commit | 840f968d9318e07b0b7cde97b8461f330f8a4573 (patch) | |
| tree | 51ff4036d5ee43bd27efa5475484f3439f19b686 /src/protocol/reqrep0 | |
| parent | e86ac84769e8467d0503840aedce208881eae1a6 (diff) | |
| download | nng-840f968d9318e07b0b7cde97b8461f330f8a4573.tar.gz nng-840f968d9318e07b0b7cde97b8461f330f8a4573.tar.bz2 nng-840f968d9318e07b0b7cde97b8461f330f8a4573.zip | |
fixes #1386 remove NNI_PROTO_FLAG_NOMSGQ
Diffstat (limited to 'src/protocol/reqrep0')
| -rw-r--r-- | src/protocol/reqrep0/rep.c | 2 | ||||
| -rw-r--r-- | src/protocol/reqrep0/req.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/reqrep0/rep.c b/src/protocol/reqrep0/rep.c index 2f10d3d6..aa32d249 100644 --- a/src/protocol/reqrep0/rep.c +++ b/src/protocol/reqrep0/rep.c @@ -692,7 +692,7 @@ static nni_proto rep0_proto = { .proto_version = NNI_PROTOCOL_VERSION, .proto_self = { NNG_REP0_SELF, NNG_REP0_SELF_NAME }, .proto_peer = { NNG_REP0_PEER, NNG_REP0_PEER_NAME }, - .proto_flags = NNI_PROTO_FLAG_SNDRCV | NNI_PROTO_FLAG_NOMSGQ, + .proto_flags = NNI_PROTO_FLAG_SNDRCV, .proto_sock_ops = &rep0_sock_ops, .proto_pipe_ops = &rep0_pipe_ops, .proto_ctx_ops = &rep0_ctx_ops, diff --git a/src/protocol/reqrep0/req.c b/src/protocol/reqrep0/req.c index fc12cb89..cb3c9395 100644 --- a/src/protocol/reqrep0/req.c +++ b/src/protocol/reqrep0/req.c @@ -856,7 +856,7 @@ static nni_proto req0_proto = { .proto_version = NNI_PROTOCOL_VERSION, .proto_self = { NNG_REQ0_SELF, NNG_REQ0_SELF_NAME }, .proto_peer = { NNG_REQ0_PEER, NNG_REQ0_PEER_NAME }, - .proto_flags = NNI_PROTO_FLAG_SNDRCV | NNI_PROTO_FLAG_NOMSGQ, + .proto_flags = NNI_PROTO_FLAG_SNDRCV, .proto_sock_ops = &req0_sock_ops, .proto_pipe_ops = &req0_pipe_ops, .proto_ctx_ops = &req0_ctx_ops, |
