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/pubsub0 | |
| 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/pubsub0')
| -rw-r--r-- | src/protocol/pubsub0/pub.c | 2 | ||||
| -rw-r--r-- | src/protocol/pubsub0/sub.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/pubsub0/pub.c b/src/protocol/pubsub0/pub.c index 2bd723cc..e3d4f16a 100644 --- a/src/protocol/pubsub0/pub.c +++ b/src/protocol/pubsub0/pub.c @@ -356,7 +356,7 @@ static nni_proto pub0_proto = { .proto_version = NNI_PROTOCOL_VERSION, .proto_self = { NNI_PROTO_PUB_V0, "pub" }, .proto_peer = { NNI_PROTO_SUB_V0, "sub" }, - .proto_flags = NNI_PROTO_FLAG_SND | NNI_PROTO_FLAG_NOMSGQ, + .proto_flags = NNI_PROTO_FLAG_SND, .proto_sock_ops = &pub0_sock_ops, .proto_pipe_ops = &pub0_pipe_ops, }; diff --git a/src/protocol/pubsub0/sub.c b/src/protocol/pubsub0/sub.c index c56c8b79..9f3f2283 100644 --- a/src/protocol/pubsub0/sub.c +++ b/src/protocol/pubsub0/sub.c @@ -742,7 +742,7 @@ static nni_proto sub0_proto = { .proto_version = NNI_PROTOCOL_VERSION, .proto_self = { NNI_PROTO_SUB_V0, "sub" }, .proto_peer = { NNI_PROTO_PUB_V0, "pub" }, - .proto_flags = NNI_PROTO_FLAG_RCV | NNI_PROTO_FLAG_NOMSGQ, + .proto_flags = NNI_PROTO_FLAG_RCV, .proto_sock_ops = &sub0_sock_ops, .proto_pipe_ops = &sub0_pipe_ops, .proto_ctx_ops = &sub0_ctx_ops, |
