From 475f4c8abfdd9c88b585105c48839f51d7523d57 Mon Sep 17 00:00:00 2001 From: Garrett D'Amore Date: Tue, 31 Oct 2017 00:47:21 -0700 Subject: fixes #137 Remove public access to numeric protocols --- src/protocol/pair/pair_v0.c | 4 ++-- src/protocol/pair/pair_v1.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/protocol/pair') diff --git a/src/protocol/pair/pair_v0.c b/src/protocol/pair/pair_v0.c index 29f3b59c..93cd1497 100644 --- a/src/protocol/pair/pair_v0.c +++ b/src/protocol/pair/pair_v0.c @@ -287,8 +287,8 @@ static nni_proto_sock_ops pair0_sock_ops = { // Legacy protocol (v0) static nni_proto pair0_proto = { .proto_version = NNI_PROTOCOL_VERSION, - .proto_self = { NNG_PROTO_PAIR_V0, "pair" }, - .proto_peer = { NNG_PROTO_PAIR_V0, "pair" }, + .proto_self = { NNI_PROTO_PAIR_V0, "pair" }, + .proto_peer = { NNI_PROTO_PAIR_V0, "pair" }, .proto_flags = NNI_PROTO_FLAG_SNDRCV, .proto_sock_ops = &pair0_sock_ops, .proto_pipe_ops = &pair0_pipe_ops, diff --git a/src/protocol/pair/pair_v1.c b/src/protocol/pair/pair_v1.c index 86ee97eb..e14d06d5 100644 --- a/src/protocol/pair/pair_v1.c +++ b/src/protocol/pair/pair_v1.c @@ -499,8 +499,8 @@ static nni_proto_sock_ops pair1_sock_ops = { static nni_proto pair1_proto = { .proto_version = NNI_PROTOCOL_VERSION, - .proto_self = { NNG_PROTO_PAIR_V1, "pair1" }, - .proto_peer = { NNG_PROTO_PAIR_V1, "pair1" }, + .proto_self = { NNI_PROTO_PAIR_V1, "pair1" }, + .proto_peer = { NNI_PROTO_PAIR_V1, "pair1" }, .proto_flags = NNI_PROTO_FLAG_SNDRCV, .proto_sock_ops = &pair1_sock_ops, .proto_pipe_ops = &pair1_pipe_ops, -- cgit v1.2.3-70-g09d2