aboutsummaryrefslogtreecommitdiff
path: root/src/sp/protocol/pipeline0
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2025-10-25 20:28:43 -0700
committerGarrett D'Amore <garrett@damore.org>2025-10-25 20:28:43 -0700
commitc2aa8c12e705ba77f3d2d28c5ba0a9ec7efb7632 (patch)
tree29d666d89ac98c1a1b7259b2cf5b12af2c30c919 /src/sp/protocol/pipeline0
parentcc419cf01d9c060a3bd3fc318f9b9bc9e736dae9 (diff)
downloadnng-c2aa8c12e705ba77f3d2d28c5ba0a9ec7efb7632.tar.gz
nng-c2aa8c12e705ba77f3d2d28c5ba0a9ec7efb7632.tar.bz2
nng-c2aa8c12e705ba77f3d2d28c5ba0a9ec7efb7632.zip
Drop the protocol version for internal implementations.
The ops vector / protocol API/ABI were meant to support external implementations, but we have moved away from having pluggable protocols, and we aren't likely to support it any time soon.
Diffstat (limited to 'src/sp/protocol/pipeline0')
-rw-r--r--src/sp/protocol/pipeline0/pull.c2
-rw-r--r--src/sp/protocol/pipeline0/push.c2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/sp/protocol/pipeline0/pull.c b/src/sp/protocol/pipeline0/pull.c
index f295556d..72e30acc 100644
--- a/src/sp/protocol/pipeline0/pull.c
+++ b/src/sp/protocol/pipeline0/pull.c
@@ -286,7 +286,6 @@ static nni_proto_sock_ops pull0_sock_ops = {
};
static nni_proto pull0_proto = {
- .proto_version = NNI_PROTOCOL_VERSION,
.proto_self = { NNI_PROTO_PULL_V0, "pull" },
.proto_peer = { NNI_PROTO_PUSH_V0, "push" },
.proto_flags = NNI_PROTO_FLAG_RCV,
@@ -295,7 +294,6 @@ static nni_proto pull0_proto = {
};
static nni_proto pull0_proto_raw = {
- .proto_version = NNI_PROTOCOL_VERSION,
.proto_self = { NNI_PROTO_PULL_V0, "pull" },
.proto_peer = { NNI_PROTO_PUSH_V0, "push" },
.proto_flags = NNI_PROTO_FLAG_RCV | NNI_PROTO_FLAG_RAW,
diff --git a/src/sp/protocol/pipeline0/push.c b/src/sp/protocol/pipeline0/push.c
index 3be746c9..6833504e 100644
--- a/src/sp/protocol/pipeline0/push.c
+++ b/src/sp/protocol/pipeline0/push.c
@@ -404,7 +404,6 @@ static nni_proto_sock_ops push0_sock_ops = {
};
static nni_proto push0_proto = {
- .proto_version = NNI_PROTOCOL_VERSION,
.proto_self = { NNI_PROTO_PUSH_V0, "push" },
.proto_peer = { NNI_PROTO_PULL_V0, "pull" },
.proto_flags = NNI_PROTO_FLAG_SND,
@@ -413,7 +412,6 @@ static nni_proto push0_proto = {
};
static nni_proto push0_proto_raw = {
- .proto_version = NNI_PROTOCOL_VERSION,
.proto_self = { NNI_PROTO_PUSH_V0, "push" },
.proto_peer = { NNI_PROTO_PULL_V0, "pull" },
.proto_flags = NNI_PROTO_FLAG_SND | NNI_PROTO_FLAG_RAW,