From d64f12553eb6ceb67ed6f6a5b2ceb6c061d375ba Mon Sep 17 00:00:00 2001 From: Garrett D'Amore Date: Tue, 8 Aug 2017 21:19:09 -0700 Subject: fixes #44 open protocol by "name" (symbol) instead number fixes #38 Make protocols "pluggable", or at least optional This is a breaking change, as we've done away with the central registered list of protocols, and instead demand the user call nng_xxx_open() where xxx is a protocol name. (We did keep a table around in the compat framework though.) There is a nice way for protocols to plug in via an nni_proto_open(), where they can use a generic constructor that they use to build a protocol specific constructor (passing their ops vector in.) --- tests/trantest.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/trantest.h') diff --git a/tests/trantest.h b/tests/trantest.h index fe6e5431..173c6b45 100644 --- a/tests/trantest.h +++ b/tests/trantest.h @@ -29,8 +29,8 @@ void trantest_init(trantest *tt, const char *addr) { (void) snprintf(tt->addr, sizeof(tt->addr), "%s", addr); - So(nng_open(&tt->reqsock, NNG_PROTO_REQ) == 0); - So(nng_open(&tt->repsock, NNG_PROTO_REP) == 0); + So(nng_req_open(&tt->reqsock) == 0); + So(nng_rep_open(&tt->repsock) == 0); tt->tran = nni_tran_find(addr); So(tt->tran != NULL); -- cgit v1.2.3-70-g09d2