'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

@@ -33,7 +33,7 @@ class local_lat
int messageSize = Integer.parseInt (args [1]);
int roundtripCount = Integer.parseInt (args [2]);
org.zmq.Context ctx = new org.zmq.Context (1, 1);
org.zmq.Context ctx = new org.zmq.Context (1, 1, 0);
org.zmq.Socket s = new org.zmq.Socket (ctx, org.zmq.Socket.REP);
s.bind (bindTo);