diff options
| author | Garrett D'Amore <garrett@damore.org> | 2025-10-25 20:28:43 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2025-10-25 20:28:43 -0700 |
| commit | c2aa8c12e705ba77f3d2d28c5ba0a9ec7efb7632 (patch) | |
| tree | 29d666d89ac98c1a1b7259b2cf5b12af2c30c919 /src/sp/protocol/pair1/pair.c | |
| parent | cc419cf01d9c060a3bd3fc318f9b9bc9e736dae9 (diff) | |
| download | nng-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/pair1/pair.c')
| -rw-r--r-- | src/sp/protocol/pair1/pair.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/sp/protocol/pair1/pair.c b/src/sp/protocol/pair1/pair.c index bddde6f8..138af845 100644 --- a/src/sp/protocol/pair1/pair.c +++ b/src/sp/protocol/pair1/pair.c @@ -793,7 +793,6 @@ static nni_proto_sock_ops pair1_sock_ops = { }; static nni_proto pair1_proto = { - .proto_version = NNI_PROTOCOL_VERSION, .proto_self = { PAIR1_SELF, PAIR1_SELF_NAME }, .proto_peer = { PAIR1_PEER, PAIR1_PEER_NAME }, .proto_flags = NNI_PROTO_FLAG_SNDRCV, @@ -821,7 +820,6 @@ static nni_proto_sock_ops pair1_sock_ops_raw = { }; static nni_proto pair1_proto_raw = { - .proto_version = NNI_PROTOCOL_VERSION, .proto_self = { PAIR1_SELF, PAIR1_SELF_NAME }, .proto_peer = { PAIR1_PEER, PAIR1_PEER_NAME }, .proto_flags = NNI_PROTO_FLAG_SNDRCV | NNI_PROTO_FLAG_RAW, |
