diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-01-02 14:37:42 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-01-02 14:37:42 -0800 |
| commit | ec2b1275153487fda661942d9b98aab2567b612e (patch) | |
| tree | 4e1457b1bbf57341ea569013892550a988457e09 /src/core/protocol.c | |
| parent | b6374f9d9b07c929522066f27ed9a7a05c6bb23b (diff) | |
| download | nng-ec2b1275153487fda661942d9b98aab2567b612e.tar.gz nng-ec2b1275153487fda661942d9b98aab2567b612e.tar.bz2 nng-ec2b1275153487fda661942d9b98aab2567b612e.zip | |
Begin testing REQ/REP.
Diffstat (limited to 'src/core/protocol.c')
| -rw-r--r-- | src/core/protocol.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/protocol.c b/src/core/protocol.c index 8669275a..072cc301 100644 --- a/src/core/protocol.c +++ b/src/core/protocol.c @@ -17,9 +17,13 @@ // change, as adding new protocols is not something intended to be done // outside of the core. extern nni_proto nni_pair_proto; +extern nni_proto nni_rep_proto; +extern nni_proto nni_req_proto; static nni_proto *protocols[] = { &nni_pair_proto, + &nni_rep_proto, + &nni_req_proto, NULL }; |
