diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2012-06-13 10:25:18 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2012-06-13 10:25:18 +0200 |
commit | 0a2f88984a4543aa69c15d8d8639180816857a6b (patch) | |
tree | 759f4d025d4cb95e010081839197045a7fde9826 /tests/libzmq21.cpp | |
parent | b018208d5901873a374d08a98cf31e3bb89d12d0 (diff) |
Revert "Implement SP wire protocol"
This reverts commit a34ea4d80609395150742259fd8c9caa4409e961.
Diffstat (limited to 'tests/libzmq21.cpp')
-rw-r--r-- | tests/libzmq21.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/libzmq21.cpp b/tests/libzmq21.cpp index 3323ef0..ecf271b 100644 --- a/tests/libzmq21.cpp +++ b/tests/libzmq21.cpp @@ -53,9 +53,8 @@ int XS_TEST_MAIN () assert (ctx); void *pub = xs_socket (ctx, XS_PUB); assert (pub); - int pattern_version = 1; - int rc = xs_setsockopt (pub, XS_PATTERN_VERSION, &pattern_version, - sizeof (pattern_version)); + int protocol = 1; + int rc = xs_setsockopt (pub, XS_PROTOCOL, &protocol, sizeof (protocol)); assert (rc == 0); rc = xs_bind (pub, "tcp://127.0.0.1:5560"); assert (rc != -1); @@ -100,9 +99,8 @@ int XS_TEST_MAIN () assert (ctx); void *sub = xs_socket (ctx, XS_SUB); assert (sub); - pattern_version = 1; - rc = xs_setsockopt (sub, XS_PATTERN_VERSION, &pattern_version, - sizeof (pattern_version)); + protocol = 1; + rc = xs_setsockopt (sub, XS_PROTOCOL, &protocol, sizeof (protocol)); assert (rc == 0); rc = xs_setsockopt (sub, XS_SUBSCRIBE, "", 0); assert (rc == 0); |