'flags' parameter added to zmq_init

This commit is contained in:
Martin Sustrik
2009-09-20 10:14:21 +02:00
parent edecf75b61
commit 50a8b9ea0c
26 changed files with 65 additions and 41 deletions

View File

@@ -27,7 +27,7 @@ connect_to = ARGV[0]
message_size = ARGV[1].to_i
roundtrip_count = ARGV[2].to_i
ctx = Context.new(1, 1)
ctx = Context.new(1, 1, 0)
s = Socket.new(ctx, REQ);
s.connect(connect_to);