czmq-ffi-gen 0.9.1-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. checksums.yaml +7 -0
  2. data/AUTHORS +1 -0
  3. data/CHANGES.md +88 -0
  4. data/Gemfile +2 -0
  5. data/LICENSE +14 -0
  6. data/README.md +112 -0
  7. data/lib/czmq-ffi-gen.rb +7 -0
  8. data/lib/czmq-ffi-gen/czmq/ffi.rb +1210 -0
  9. data/lib/czmq-ffi-gen/czmq/ffi/version.rb +15 -0
  10. data/lib/czmq-ffi-gen/czmq/ffi/zactor.rb +186 -0
  11. data/lib/czmq-ffi-gen/czmq/ffi/zarmour.rb +286 -0
  12. data/lib/czmq-ffi-gen/czmq/ffi/zcert.rb +307 -0
  13. data/lib/czmq-ffi-gen/czmq/ffi/zcertstore.rb +222 -0
  14. data/lib/czmq-ffi-gen/czmq/ffi/zchunk.rb +388 -0
  15. data/lib/czmq-ffi-gen/czmq/ffi/zclock.rb +140 -0
  16. data/lib/czmq-ffi-gen/czmq/ffi/zconfig.rb +442 -0
  17. data/lib/czmq-ffi-gen/czmq/ffi/zdigest.rb +156 -0
  18. data/lib/czmq-ffi-gen/czmq/ffi/zdir.rb +283 -0
  19. data/lib/czmq-ffi-gen/czmq/ffi/zdir_patch.rb +194 -0
  20. data/lib/czmq-ffi-gen/czmq/ffi/zfile.rb +353 -0
  21. data/lib/czmq-ffi-gen/czmq/ffi/zframe.rb +359 -0
  22. data/lib/czmq-ffi-gen/czmq/ffi/zhash.rb +416 -0
  23. data/lib/czmq-ffi-gen/czmq/ffi/zhashx.rb +659 -0
  24. data/lib/czmq-ffi-gen/czmq/ffi/ziflist.rb +189 -0
  25. data/lib/czmq-ffi-gen/czmq/ffi/zlist.rb +365 -0
  26. data/lib/czmq-ffi-gen/czmq/ffi/zlistx.rb +478 -0
  27. data/lib/czmq-ffi-gen/czmq/ffi/zloop.rb +396 -0
  28. data/lib/czmq-ffi-gen/czmq/ffi/zmsg.rb +515 -0
  29. data/lib/czmq-ffi-gen/czmq/ffi/zpoller.rb +194 -0
  30. data/lib/czmq-ffi-gen/czmq/ffi/zproc.rb +294 -0
  31. data/lib/czmq-ffi-gen/czmq/ffi/zsock.rb +3479 -0
  32. data/lib/czmq-ffi-gen/czmq/ffi/zstr.rb +203 -0
  33. data/lib/czmq-ffi-gen/czmq/ffi/ztimerset.rb +203 -0
  34. data/lib/czmq-ffi-gen/czmq/ffi/ztrie.rb +221 -0
  35. data/lib/czmq-ffi-gen/czmq/ffi/zuuid.rb +227 -0
  36. data/lib/czmq-ffi-gen/errors.rb +12 -0
  37. data/lib/czmq-ffi-gen/gem_version.rb +5 -0
  38. data/lib/czmq-ffi-gen/legacy.rb +16 -0
  39. data/lib/czmq-ffi-gen/libzmq.rb +18 -0
  40. data/lib/czmq-ffi-gen/signals.rb +27 -0
  41. data/lib/czmq-ffi-gen/vendor.rb +5 -0
  42. data/lib/czmq-ffi-gen/versions.rb +19 -0
  43. data/vendor/local/bin/inproc_lat.exe +0 -0
  44. data/vendor/local/bin/inproc_thr.exe +0 -0
  45. data/vendor/local/bin/libczmq.dll +0 -0
  46. data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
  47. data/vendor/local/bin/libstdc++-6.dll +0 -0
  48. data/vendor/local/bin/libzmq.dll +0 -0
  49. data/vendor/local/bin/local_lat.exe +0 -0
  50. data/vendor/local/bin/local_thr.exe +0 -0
  51. data/vendor/local/bin/remote_lat.exe +0 -0
  52. data/vendor/local/bin/remote_thr.exe +0 -0
  53. data/vendor/local/include/czmq.h +31 -0
  54. data/vendor/local/include/czmq_library.h +199 -0
  55. data/vendor/local/include/czmq_prelude.h +641 -0
  56. data/vendor/local/include/readme.txt +83 -0
  57. data/vendor/local/include/sha1.h +76 -0
  58. data/vendor/local/include/sha1.inc_c +335 -0
  59. data/vendor/local/include/slre.h +92 -0
  60. data/vendor/local/include/slre.inc_c +660 -0
  61. data/vendor/local/include/zactor.h +76 -0
  62. data/vendor/local/include/zarmour.h +114 -0
  63. data/vendor/local/include/zauth.h +100 -0
  64. data/vendor/local/include/zauth_v2.h +88 -0
  65. data/vendor/local/include/zbeacon.h +86 -0
  66. data/vendor/local/include/zbeacon_v2.h +75 -0
  67. data/vendor/local/include/zcert.h +136 -0
  68. data/vendor/local/include/zcertstore.h +100 -0
  69. data/vendor/local/include/zchunk.h +163 -0
  70. data/vendor/local/include/zclock.h +73 -0
  71. data/vendor/local/include/zconfig.h +185 -0
  72. data/vendor/local/include/zctx.h +107 -0
  73. data/vendor/local/include/zdigest.h +65 -0
  74. data/vendor/local/include/zdir.h +149 -0
  75. data/vendor/local/include/zdir_patch.h +82 -0
  76. data/vendor/local/include/zfile.h +177 -0
  77. data/vendor/local/include/zframe.h +176 -0
  78. data/vendor/local/include/zgossip.h +95 -0
  79. data/vendor/local/include/zgossip_engine.inc +927 -0
  80. data/vendor/local/include/zgossip_msg.h +129 -0
  81. data/vendor/local/include/zhash.h +195 -0
  82. data/vendor/local/include/zhash_primes.inc +329 -0
  83. data/vendor/local/include/zhashx.h +298 -0
  84. data/vendor/local/include/ziflist.h +77 -0
  85. data/vendor/local/include/zlist.h +158 -0
  86. data/vendor/local/include/zlistx.h +205 -0
  87. data/vendor/local/include/zloop.h +168 -0
  88. data/vendor/local/include/zmonitor.h +73 -0
  89. data/vendor/local/include/zmonitor_v2.h +56 -0
  90. data/vendor/local/include/zmq.h +617 -0
  91. data/vendor/local/include/zmq_utils.h +48 -0
  92. data/vendor/local/include/zmsg.h +280 -0
  93. data/vendor/local/include/zmutex.h +55 -0
  94. data/vendor/local/include/zpoller.h +92 -0
  95. data/vendor/local/include/zproc.h +168 -0
  96. data/vendor/local/include/zproxy.h +111 -0
  97. data/vendor/local/include/zproxy_v2.h +62 -0
  98. data/vendor/local/include/zrex.h +82 -0
  99. data/vendor/local/include/zsock.h +912 -0
  100. data/vendor/local/include/zsock_option.inc +4126 -0
  101. data/vendor/local/include/zsocket.h +110 -0
  102. data/vendor/local/include/zsockopt.h +256 -0
  103. data/vendor/local/include/zstr.h +110 -0
  104. data/vendor/local/include/zsys.h +386 -0
  105. data/vendor/local/include/zthread.h +50 -0
  106. data/vendor/local/include/ztimerset.h +90 -0
  107. data/vendor/local/include/ztrie.h +106 -0
  108. data/vendor/local/include/zuuid.h +96 -0
  109. data/vendor/local/lib/libczmq.dll.a +0 -0
  110. data/vendor/local/lib/liblibzmq.dll.a +0 -0
  111. data/vendor/local/lib/libzmq-static.a +0 -0
  112. data/vendor/local/lib/pkgconfig/libczmq.pc +23 -0
  113. data/vendor/local/lib/pkgconfig/libzmq.pc +11 -0
  114. data/vendor/local/share/zmq/AUTHORS.txt +147 -0
  115. data/vendor/local/share/zmq/COPYING.LESSER.txt +181 -0
  116. data/vendor/local/share/zmq/COPYING.txt +674 -0
  117. data/vendor/local/share/zmq/NEWS.txt +978 -0
  118. metadata +230 -0
@@ -0,0 +1,978 @@
1
+ 0MQ version 4.1.0 rc1, released on 2014/10/14
2
+ =============================================
3
+
4
+ * Many changes, see ChangeLog.
5
+
6
+
7
+ 0MQ version 4.0.5 stable, released on 2014/10/14
8
+ ================================================
9
+
10
+ * Fixed #1191; CURVE mechanism does not verify short term nonces.
11
+
12
+ * Fixed #1190; stream_engine is vulnerable to downgrade attacks.
13
+
14
+ * Fixed #1088; assertion failure for WSAENOTSOCK on Windows.
15
+
16
+ * Fixed #1015; race condition while connecting inproc sockets.
17
+
18
+ * Fixed #994; bump so library number to 4.0.0
19
+
20
+ * Fixed #939, assertion failed: !more (fq.cpp:99) after many ZAP requests.
21
+
22
+ * Fixed #872; lost first part of message over inproc://.
23
+
24
+ * Fixed #797, keep-alive on Windows.
25
+
26
+
27
+ 0MQ version 4.0.4 stable, released on 2014/03/10
28
+ ================================================
29
+
30
+ Bug Fixes
31
+ ---------
32
+
33
+ * Fixed #909; out of tree build issue on Linux.
34
+
35
+ * Fixed #888; hangs on terminate when inproc connected but never bound.
36
+
37
+ * Fixed #868; assertion failure at ip.cpp:137 when using port scanner.
38
+
39
+ * Fixed #818; fix timestamp counter on s390/s390x.
40
+
41
+ * Fixed #817; only export zmq_* symbols.
42
+
43
+ * Fixed #797; fixed setting TCP keepalive on Windows.
44
+
45
+ * Fixed #775; compile error on Windows.
46
+
47
+ * Fixed #763; when talking to a ZMTP v1 peer (libzmq 2.2), a socket would
48
+ send an extra identity frame at the start of the connection.
49
+
50
+ * Fixed LIBZMQ-576 - Crash closing a socket after zmq_msg_send returns
51
+ EAGAIN (reverts LIBZMQ-497)
52
+
53
+ * Fixed LIBZMQ-584; subscription filters getting lost on reconnection.
54
+
55
+
56
+ 0MQ version 4.0.3 stable, released on 2013/11/24
57
+ ================================================
58
+
59
+ Bug Fixes
60
+ ---------
61
+
62
+ * Fixed test_many_sockets case, which failed when process socket limit
63
+ was 1024.
64
+
65
+
66
+ 0MQ version 4.0.2 stable, released on 2013/11/24
67
+ ================================================
68
+
69
+ Bug Fixes
70
+ ---------
71
+
72
+ * Fixed LIBZMQ-583 - improved low-res timer for Windows
73
+ * Fixed LIBZMQ-578 - z85_decode was extremely slow
74
+ * Fixed LIBZMQ-577 - fault in man pages.
75
+ * Fixed LIBZMQ-574 - assertion failure when ran out of system file handles
76
+ * Fixed LIBZMQ-571 - test_stream failing in some cases
77
+ * Fixed LIBZMQ-569 - Socket server crashes with random client data and when
78
+ talking to 2.2 versions
79
+ * Fixed LIBZMQ-39 - Bad file descriptor during shutdown
80
+ * Pulled expected failing test_linger.cpp from release
81
+ * Reduced pause time in tests to allow "make check" to run faster
82
+
83
+
84
+ 0MQ version 4.0.1 stable, released on 2013/10/08
85
+ ================================================
86
+
87
+ Changes
88
+ -------
89
+
90
+ * Updated CURVE mechanism to track revised RFC 27 (INITIATE vouch).
91
+
92
+ The INITIATE command vouch box is Box[C',S](C->S') instead of
93
+ Box[C'](C->S), to reduce the risk of client impersonation, as per
94
+ https://codesinchaos.wordpress.com/2012/09/09/curvecp-1/.
95
+
96
+ * Fixed LIBZMQ-567, adding abstract namespaces for IPC sockets on Linux.
97
+
98
+ Converts an initial strudel or "at sign" (@) in the Unix socket path to
99
+ a NULL character ('\0') indicating that the socket uses the abstract
100
+ namespace instead of the filesystem namespace. For instance, binding a
101
+ socket to 'ipc://@/tmp/tester' will not create a file associated with
102
+ the socket whereas binding to 'ipc:///tmp/tester' will create the file
103
+ /tmp/tester. See issue 567 for more information.
104
+
105
+ * Added zmq_z85_encode and zmq_z85_decode to core libzmq API.
106
+
107
+ * Added zmq_curve_keypair to core libzmq API.
108
+
109
+ * Bumped library ABI version to 4:0:1.
110
+
111
+ Bug fixes
112
+ ---------
113
+
114
+ * Fixed some build/test errors on OS/X + Clang++.
115
+
116
+ * Fixed LIBZMQ-565, typo in code.
117
+
118
+ * Fixed LIBZMQ-566, dealer-to-router connections sometimes failing.
119
+
120
+ * Fixed builds for AIX, MSVC 2008, OS/X with clang++, Solaris.
121
+
122
+ * Improved CURVE handshake error handling.
123
+
124
+
125
+ 0MQ version 4.0.0 (RC1), released on 2013/09/20
126
+ ===============================================
127
+
128
+ Major changes
129
+ -------------
130
+
131
+ * New wire level protocol, ZMTP/3.0, see http://rfc.zeromq.org/spec:23.
132
+ Does not yet implement the SUBSCRIBE, CANCEL, PING, and PONG commands.
133
+
134
+ * New security framework, from plain user+password to strong encryption,
135
+ see section below. See http://hintjens.com/blog:49 for a tutorial.
136
+
137
+ * New ZMQ_STREAM socket type for working as a TCP client or server. See:
138
+ tests/test_stream.cpp.
139
+
140
+ Improvements
141
+ ------------
142
+
143
+ * You can now connect to an inproc:// endpoint that does not already
144
+ exist. This means inproc:// no longer needs careful set-up, but it may
145
+ break code that relied on the old behaviour. See:
146
+ tests/test_inproc_connect.cpp.
147
+
148
+ * Libzmq now checks socket types at connection time, so that trying to
149
+ connect a 'wrong' socket type will fail.
150
+
151
+ * New zmq_ctx_shutdown API method will shutdown a context and send ETERM
152
+ to blocking calls, without blocking. Use zmq_ctx_term to finalise the
153
+ process.
154
+
155
+ * The regression test suite has been significantly extended and improved.
156
+
157
+ * Contexts can now be terminated in forked child processes. See:
158
+ tests/test_fork.cpp.
159
+
160
+ * zmq_disconnect now respects the linger setting on sockets.
161
+
162
+ * New zmq_send_const API method to send constant data (without copying).
163
+ See: tests/test_inproc_connect.cpp.
164
+
165
+ * Added CMake support for static libraries.
166
+
167
+ * Added test cases for socket semantics as defined in RFCs 28, 29, 30, 31.
168
+ See: tests/test_spec_*.cpp.
169
+
170
+ * New socket option, ZMQ_PROBE_ROUTER triggers an empty message on connect.
171
+ See: tests/test_probe_router.cpp.
172
+
173
+ * New socket option, ZMQ_REQ_CORRELATE allows for correlation of replies
174
+ from a REP socket. See: tests/test_req_correlate.cpp.
175
+
176
+ * New socket option, ZMQ_REQ_RELAXED, lets you disable the state machine
177
+ on a REQ socket, so you can send multiple requests without waiting for
178
+ replies, and without getting an EFSM error. See:
179
+ tests/test_req_relaxed.cpp.
180
+
181
+ * New socket option, ZMQ_CONFLATE restricts the outgoing and incoming
182
+ socket buffers to a single message. See: tests/test_conflate.cpp.
183
+
184
+ Deprecated Options
185
+ ------------------
186
+
187
+ * ZMQ_IPV4ONLY deprecated and renamed to ZMQ_IPV6 so that options are
188
+ consistently "off" by default.
189
+
190
+ * ZMQ_DELAY_ATTACH_ON_CONNECT deprecated, and renamed to ZMQ_IMMEDIATE.
191
+ See: tests/test_immediate.cpp.
192
+
193
+ Security Framework
194
+ ------------------
195
+
196
+ Based on new ZMTP wire level protocol that negotiates a security
197
+ "mechanism" between client and server before exchanging any other data.
198
+
199
+ Security mechanisms are extensible. ZMTP defines three by default:
200
+
201
+ * NULL - classic ZeroMQ, with no authentication. See
202
+ http://rfc.zeromq.org/spec:23.
203
+
204
+ * PLAIN - plain-text username + password authentication. See
205
+ http://rfc.zeromq.org/spec:24.
206
+
207
+ * CURVE - secure authentication and encryption based on elliptic curve
208
+ cryptography, using the Curve25519 algorithm from Daniel Bernstein and
209
+ based on CurveCP's security handshake. See http://rfc.zeromq.org/spec:25,
210
+ http://rfc.zeromq.org/spec:26, and http://curvecp.org.
211
+
212
+ Authentication is done by pluggable "authenticators" that connect to libzmq
213
+ over an inproc endpoint, see http://rfc.zeromq.org/spec:27.
214
+
215
+ Socket options to configure PLAIN security on client or server:
216
+
217
+ * ZMQ_PLAIN_SERVER, ZMQ_PLAIN_USERNAME, ZMQ_PLAIN_PASSWORD. See
218
+ tests/test_security_plain.
219
+
220
+ Socket options to configure CURVE security on client or server:
221
+
222
+ * ZMQ_CURVE_SERVER, ZMQ_CURVE_PUBLICKEY, ZMQ_CURVE_SECRETKEY,
223
+ ZMQ_CURVE_SERVERKEY. See tests/test_security_curve.cpp.
224
+
225
+ Socket options to configure "domain" for ZAP handler:
226
+
227
+ * ZMQ_ZAP_DOMAIN, see tests/test_security_null.cpp.
228
+
229
+ Support for encoding/decoding CURVE binary keys to ASCII:
230
+
231
+ * zmq_z85_encode, zmq_z85_decode.
232
+
233
+ Other issues addressed in this release
234
+ --------------------------------------
235
+
236
+ * LIBZMQ-525 Multipart upstreaming from XSUB to XPUB
237
+
238
+
239
+ 0MQ version 3.2.4 stable, released on 2013/09/20
240
+ ================================================
241
+
242
+ * LIBZMQ-84 (Windows) Assertion failed: Address already in use at signaler.cpp:80
243
+ * LIBZMQ-456 ZMQ_XPUB_VERBOSE does not propagate in a tree of XPUB/XSUB devices
244
+ * LIBZMQ-532 (Windows) critical section not released on error
245
+ * LIBZMQ-569 Detect OpenPGM 5.2 system library
246
+ * LIBZMQ-563 Subscribers sometimes stopped receiving messages (aka LIBZMQ-541)
247
+ * LIBZMQ-XXX Added support for Travis Continuous Integration
248
+ * LIBZMQ-XXX Several improvements to MSVC support
249
+
250
+
251
+ 0MQ version 3.2.3 stable, released on 2013/05/02
252
+ ================================================
253
+
254
+ Issues addressed in this release
255
+ --------------------------------
256
+
257
+ * LIBZMQ-526 Assertion failure "Invalid argument (tcp_connecter.cpp:285)"
258
+ * LIBZMQ-446 Setting the DSCP bits by default causes CAP_NET_ADMIN error
259
+ * LIBZMQ-496 Crash on heavy socket opening/closing: Device or resource busy (mutex.hpp:90)
260
+ * LIBZMQ-462 test_connect_delay fails at test_connect_delay.cpp:80
261
+ * LIBZMQ-497 Messages getting dropped
262
+ * LIBZMQ-488 signaler.cpp leaks the win32 Event Handle
263
+ * LIBZMQ-476 zmq_disconnect has no effect for inproc sockets
264
+ * LIBZMQ-475 zmq_disconnect does not sent unsubscribe messages
265
+
266
+
267
+ 0MQ version 3.2.2 stable, released on 2012/11/23
268
+ ================================================
269
+
270
+ Issues addressed in this release
271
+ --------------------------------
272
+
273
+ * LIBZMQ-384 No meta data for ZMQ_EVENT_DISCONNECTED monitor event
274
+ * LIBZMQ-414 Error in ARM/Thumb2 assembly (atomic_ptr.hpp)
275
+ * LIBZMQ-417 zmq_assert (!incomplete_in) in session_base.cpp 228
276
+ * LIBZMQ-447 socket_base_t::recv() packet loss and memory leak at high receiving rate
277
+ * LIBZMQ-448 Builds fail on older versions of GCC
278
+ * LIBZMQ-449 Builds fail on AIX
279
+ * LIBZMQ-450 lt-test_monitor: fails with assertion at test_monitor.cpp:81
280
+ * LIBZMQ-451 ZMQ_ROUTER_MANDATORY blocks forever
281
+ * LIBZMQ-452 test_connect_delay.cpp:175:12: error: 'sleep' was not declared in this scope
282
+ * LIBZMQ-458 lt-test_router_mandatory fails with assertion at test_router_mandatory.cpp:53
283
+ * LIBZMQ-459 Assertion failed: encoder (stream_engine.cpp:266
284
+ * LIBZMQ-464 PUB socket with HWM set leaks memory
285
+ * LIBZMQ-465 PUB/SUB results in 80-90% of CPU load
286
+ * LIBZMQ-468 ZMQ_XPUB_VERBOSE & unsubscribe
287
+ * LIBZMQ-472 Segfault in zmq_poll in REQ to ROUTER dialog
288
+
289
+
290
+ 0MQ version 3.2.1 (RC2), released on 2012/10/15
291
+ ===============================================
292
+
293
+ Issues addressed in this release
294
+ --------------------------------
295
+
296
+ * Fixed issue xxx - handle insufficient resources on accept() properly.
297
+ * Fixed issue 443 - added ZMQ_XPUB_VERBOSE setsocket option.
298
+ * Fixed issue 433 - ZeroMQ died on receiving EPIPE
299
+ * Fixed issue 423 - test_pair_tcp hangs
300
+ * Fixed issue 416 - socket_base: fix 'va_list' has not been declared error
301
+ * Fixed issue 409 - Pub-sub interoperability between 2.x and 3.x.
302
+ * Fixed issue 404 - zmq_term can not safely be re-entered with pgm transport
303
+ * Fixed issue 399 - zmq_ctx_set_monitor callback is not works properly
304
+ * Fixed issue 393 - libzmq does not build on Android (socklen_t signed comparison)
305
+ * Fixed issue 392 - Interaction with pyzmq on Android
306
+ * Fixed issue 389 - Assertion failure in mtrie.cpp:317
307
+ * Fixed issue 388 - tests/test_monitor.cpp has no newline at EOF (causes compile error)
308
+ * Fixed issue 387 - "sa_family_t sa_family;" in pgm_socket.cpp is unused variable
309
+ * Fixed issue 385 - Rework ZMQ_FAIL_UNROUTABLE socket option to actually work
310
+ * Fixed issue 382 - Current libzmq doesn't compile on Android NDK
311
+ * Fixed issue 377 - ZeroMQ will not build on Windows with OpenPGM
312
+ * Fixed issue 375 - error: unused variable 'sa_family'
313
+ * Fixed issue 373 - Unable to build libzmq/zeromq3.x on AIX7
314
+ * Fixed issue 372 - Unable to build libzmq/zeromq3.x on HPUX 11iv3
315
+ * Fixed issue 371 - Unable to build libzmq/zeromq3.x on RHEL5/SLES10
316
+ * Fixed issue 329 - wsa_error_to_errno() calls abort() on WSAEACCES
317
+ * Fixed issue 309 - Assertion failed: options.recv_identity (socket_base.cpp:864)
318
+ * Fixed issue 211 - Assertion failed: msg_->flags & ZMQ_MSG_MORE (rep.cpp:81)
319
+
320
+ API changes
321
+ -----------
322
+
323
+ * zmq_device () deprecated and replaced by zmq_proxy ().
324
+ * zmq_ctx_set_monitor () replaced by zmq_socket_monitor ().
325
+ * ZMQ_ROUTER_BEHAVIOR/ZMQ_FAIL_UNROUTABLE renamed experimentally to
326
+ ZMQ_ROUTER_MANDATORY.
327
+
328
+
329
+ 0MQ version 3.2.0 (RC1), released on 2012/06/05
330
+ ===============================================
331
+
332
+ Bug fixes
333
+ ---------
334
+
335
+ * Fixed issue 264 - Potential bug with linger, messages dropped during
336
+ socket close.
337
+
338
+ * Fixed issue 293 - libzmq doesn't follow the ZMTP/1.0 spec (did not
339
+ set reserved bits to 0).
340
+
341
+ * Fixed issue 303 - Assertion failure in pgm_sender.cpp:102.
342
+
343
+ * Fixed issue 320 - Assertion failure in connect_session.cpp:96 when
344
+ connecting epgm to an invalid endpoint.
345
+
346
+ * Fixed issue 325 - Assertion failure in xrep.cpp:93, when two sockets
347
+ connect using the same identity.
348
+
349
+ * Fixed issue 327 - Assertion failure in mtrie.cpp:246, when
350
+ unsubscribing from channel.
351
+
352
+ * Fixed issue 346 - Assertion failure in signaler.cpp:155, when using a
353
+ closed socket.
354
+
355
+ * Fixed issue 328 - unsubscribe wrongly clears multiple subscriptions.
356
+
357
+ * Fixed issue 330 - IPC listener does not remove unix domain stream file
358
+ when terminated.
359
+
360
+ * Fixed issue 334 - Memory leak in session_base.cpp:59.
361
+
362
+ * Fixed issue 369 - ROUTER cannot close/reopen while DEALER connected.
363
+
364
+ Operating systems
365
+ -----------------
366
+
367
+ * Fixed issue 301 - HPUX 11iv2 - build fails, CLOCK_MONOTONIC
368
+ undefined.
369
+
370
+ * Fixed issue 324 - OS/X - build fails, ECANTROUTE undefined.
371
+
372
+ * Fixed issue 368 - Solaris / Sun C++ - build fails, no insert method
373
+ in multimap classes.
374
+
375
+ * Fixed issue 366 - Windows - ports not freed after crash.
376
+
377
+ * Fixed issue 355 - Windows - build fails, MSVC solution file is out of
378
+ date.
379
+
380
+ * Fixed issue 331 - FreeBSD 8 and 9 - getaddrinfo fails with
381
+ EAI_BADFLAGS on AI_V4MAPPED flag.
382
+
383
+ * Fixed issue xxx - Added support for WinCE.
384
+
385
+ Performance
386
+ -----------
387
+
388
+ * Fixed issue xxx - Implemented atomic operations for ARMv7a (runs 15-20% faster).
389
+
390
+ API changes
391
+ -----------
392
+
393
+ * Fixed issue 337 - Cleaned-up context API:
394
+
395
+ zmq_ctx_new() - create new context (will deprecate zmq_init)
396
+ zmq_ctx_destroy() - destroy context (will deprecate zmq_term)
397
+ zmq_ctx_set() - set context property
398
+ zmq_ctx_get() - get context property
399
+
400
+ * Fixed issue xxx - Cleaned-up message API:
401
+
402
+ zmq_msg_send() - send a message (will deprecate zmq_sendmsg)
403
+ zmq_msg_recv() - receive a message (will deprecate zmq_recvmsg)
404
+ zmq_msg_more() - indicate whether this is final part of message
405
+ zmq_msg_get() - get message property
406
+ zmq_msg_set() - set message property
407
+
408
+ * Fixed issue xxx - Added context monitoring API:
409
+
410
+ zmq_ctx_set_monitor() - configure monitor callback.
411
+
412
+ * Fixed issue xxx - Added unbind/disconnect API:
413
+
414
+ zmq_unbind() - unbind socket.
415
+ zmq_disconnect() - disconnect socket.
416
+
417
+ * Fixed issue xxx - Added ZMQ_TCP_ACCEPT_FILTER setsockopt() for listening TCP sockets.
418
+
419
+ * Fixed issue 336 - Removed sys: transport.
420
+
421
+ * Fixed issue 333 - Added zmq_device function back to API (was removed
422
+ in 3.0).
423
+
424
+ * Fixed issue 340 - Add support for MAX_SOCKETS to new context API.
425
+
426
+
427
+ OMQ version 3.1.0 (beta), released on 2011/12/18
428
+ ================================================
429
+
430
+ General information
431
+ -------------------
432
+
433
+ Based on community consensus, the 0MQ 3.1.x release reverts a number of
434
+ features introduced in version 3.0. The major reason for these changes is
435
+ improving backward compatibility with 0MQ 2.1.x.
436
+
437
+ Development of the 0MQ 3.0.x series will be discontinued, and users are
438
+ encouraged to upgrade to 3.1.
439
+
440
+ The 0MQ 3.1.x releases use ABI version 3.
441
+
442
+ Reverted functionality
443
+ ----------------------
444
+
445
+ The following functionality present in 0MQ 3.0 has been reverted:
446
+
447
+ * Wire format changes. The 0MQ 3.1 wire format is identical to that of 0MQ
448
+ 2.1.
449
+
450
+ * LABELs and COMMANDs have been removed.
451
+
452
+ * Explicit identies are re-introduced, however they can be used only for
453
+ explicit routing, not for durable sockets.
454
+
455
+ * The ZMQ_ROUTER and ZMQ_DEALER socket types are once again aliases for
456
+ ZMQ_XREQ and ZMQ_XREP.
457
+
458
+ New functionality
459
+ -----------------
460
+
461
+ * The zmq_getmsgopt() function has been introduced.
462
+
463
+ * Experimental IPv6 support has been introduced. This is disabled by
464
+ default, see the zmq_setsockopt() documentation for enabling it.
465
+
466
+ Other changes
467
+ -------------
468
+
469
+ * The default HWM for all socket types has been set to 1000.
470
+
471
+ * Many bug fixes.
472
+
473
+ Building
474
+ --------
475
+
476
+ * The dependency on libuuid has been removed.
477
+
478
+ * Support for building on Android, and with MSVC 10 has been added.
479
+
480
+ 0MQ version 3.0.0 (alpha), released on 2011/07/12
481
+ =================================================
482
+
483
+ New functionality
484
+ -----------------
485
+
486
+ * A zmq_ctx_set_monitor() API to register a callback / event sink for changes
487
+ in socket state.
488
+
489
+ * POSIX-compliant zmq_send and zmq_recv introduced (uses raw buffer
490
+ instead of message object).
491
+
492
+ * ZMQ_MULTICAST_HOPS socket option added. Sets the appropriate field in
493
+ IP headers of PGM packets.
494
+
495
+ * Subscription forwarding. Instead of filtering on consumer, the
496
+ subscription is moved as far as possible towards the publisher and
497
+ filtering is done there.
498
+
499
+ * ZMQ_XPUB, ZMQ_XSUB introduced. Allow to create subscription-
500
+ forwarding-friendly intermediate devices.
501
+
502
+ * Add sockopt ZMQ_RCVTIMEO/ZMQ_SNDTIMEO. Allow to set timeout for
503
+ blocking send/recv calls.
504
+
505
+ * A new LABEL flag was added to the wire format. The flag distinguishes
506
+ message parts used by 0MQ (labels) from user payload message parts.
507
+
508
+ * There is a new wire format for the REQ/REP pattern. First, the empty
509
+ bottom-of-the-stack message part is not needed any more, the LABEL
510
+ flag is used instead. Secondly, peer IDs are 32-bit integers rather
511
+ than 17-byte UUIDs.
512
+
513
+ * The REQ socket now drops duplicate replies.
514
+
515
+ * Outstanding requests & replies associated with a client are dropped
516
+ when the clients dies. This is a performance optimisation.
517
+
518
+ * Introduced ZMQ_ROUTER and ZMQ_DEALER sockets. These mimic the
519
+ functionality of ZMQ_ROUTER and ZMQ_DEALER in 0MQ/2.1.x. Guarantees
520
+ backward compatibility for exsiting code.
521
+
522
+ * Removed dependency on OS socketpair buffer size. No more asserts in
523
+ mailbox.cpp because of low system limit of sockepair buffer size.
524
+
525
+ API improvements
526
+ ----------------
527
+
528
+ * Obsolete constants ZMQ_UPSTREAM and ZMQ_DOWNSTREAM removed. Use
529
+ ZMQ_PUSH and ZMQ_PULL instead.
530
+
531
+ * Timeout in zmq_poll is in milliseconds instead of microseconds. This
532
+ makes zmq_poll() compliant with POSIX poll()
533
+
534
+ * ZMQ_MCAST_LOOP removed. There's no support for multicast over
535
+ loopback any more. Use IPC or TCP isntead.
536
+
537
+ * zmq_send/zmq_recv was renamed zmq_sendmsg/zmq_recvmsg.
538
+
539
+ * ZMQ_RECOVERY_IVL and ZMQ_RECOVERY_IVL_MSEC reconciled. The new option
540
+ is named ZMQ_RECOVERY_IVL and the unit is milliseconds.
541
+
542
+ * Option types changed. Most of the numeric types are now represented
543
+ as 'int'.
544
+
545
+ * ZMQ_HWM split into ZMQ_SNDHWM and ZMQ_RCVHWM. This makes it possible
546
+ to control message flow separately for each direction.
547
+
548
+ * ZMQ_NOBLOCK renamed ZMQ_DONTWAIT. That makes it POSIX-compliant.
549
+
550
+ Less is More
551
+ ------------
552
+
553
+ * Pre-built devices and zmq_device() removed. Should be made available
554
+ as a separate project(s).
555
+
556
+ * ZMQ_SWAP removed. Writing data to disk should be done on top of 0MQ,
557
+ on inside it.
558
+
559
+ * C++ binding removed from the core. Now it's a separate project, same
560
+ as any other binding.
561
+
562
+ Bug fixes
563
+ ---------
564
+
565
+ * Many.
566
+
567
+ Building
568
+ --------
569
+
570
+ * Make pkg-config dependency conditional.
571
+
572
+ Distribution
573
+ ------------
574
+
575
+ * Removed Debian packaging, which is now available at packages.debian.org
576
+ or via apt-get.
577
+
578
+
579
+ 0MQ version 2.2.0 (Stable), released on 2012/04/04
580
+ ==================================================
581
+
582
+ Changes
583
+ -------
584
+
585
+ * Fixed issue 349, add send/recv timeout socket options.
586
+
587
+ Bug fixes
588
+ ---------
589
+
590
+ * Fixed issue 301, fix builds on HP-UX 11iv3 when using either gcc or aCC.
591
+
592
+ * Fixed issue 305, memory leakage when using dynamic subscriptions.
593
+
594
+ * Fixed issue 332, libzmq doesn't compile on Android NDK.
595
+
596
+ * Fixed issue 293, libzmq doesn't follow ZMTP/1.0 spec.
597
+
598
+ * Fixed issue 342, cannot build against zmq.hpp under C++11.
599
+
600
+
601
+ 0MQ version 2.1.11 (Stable), released on 2011/12/18
602
+ ===================================================
603
+
604
+ Bug fixes
605
+ ---------
606
+
607
+ * Fixed issue 290, zmq_poll was using system time instead of monotonic
608
+ clock (Mika Fischer).
609
+
610
+ * Fixed issue 281, crash on heavy socket creation - assertion failure in
611
+ mutex.hpp:91. (Mika Fischer).
612
+
613
+ * Fixed issue 273, O_CLOEXEC flag used in ip.cpp:192 is supported only
614
+ on Linux kernels 2.6.27+
615
+
616
+ * Fixed issue 261, assertion failure in kqueue.cpp:76.
617
+
618
+ * Fixed issue 269, faulty diagnostic code in 2.1.10.
619
+
620
+ * Fixed issue 254, assertion failure at tcp_socket.cpp:229 on ENOTCONN.
621
+
622
+ Changes
623
+ -------
624
+
625
+ * Now builds properly on AIX 6.1 (AJ Lewis).
626
+
627
+ * Builds using libdcekt on HP-UX (AJ Lewis).
628
+
629
+ * New upstream OpenPGM maintenance release 5.1.118.
630
+
631
+ * Enabled debugging on assertion failure on Windows (Paul Betts).
632
+
633
+
634
+ 0MQ version 2.1.10 (Stable), released on 2011/10/03
635
+ ===================================================
636
+
637
+ Bug fixes
638
+ ---------
639
+
640
+ * Fixed issue 140, SWAP failed with assertion failure in pipe.cpp:187
641
+ if the current directory was not writeable. Behavior now is to return
642
+ -1 at zmq_setsockopt in this situation.
643
+
644
+ * Fixed issue 207, assertion failure in zmq_connecter.cpp:48, when an
645
+ invalid zmq_connect() string was used, or the hostname could not be
646
+ resolved. The zmq_connect() call now returns -1 in both those cases.
647
+
648
+ * Fixed issue 218, sockets not opened with SOCK_CLOEXEC, causing fork/exec
649
+ to sit on sockets unnecessarily.
650
+
651
+ * Fixed issue 250, build errors on Windows (Mikko Koppanen).
652
+
653
+ * Fixed issue 252, assertion failure in req.cpp:87 and req.cpp:88 (Mikko
654
+ Koppanen).
655
+
656
+
657
+ 0MQ version 2.1.9 (Stable), released on 2011/08/29
658
+ ==================================================
659
+
660
+ Bug fixes
661
+ ---------
662
+
663
+ * Fixed issue 240, assertion failure in pgm_socket.cpp:437.
664
+
665
+ * Fixed issue 238, assertion failure in zmq.cpp:655, when zmq_poll is
666
+ used on an empty set, on Windows.
667
+
668
+ * Fixed issue 239, assertion failure in zmq.cpp:223, when ZMQ_SWAP was
669
+ used with explicit identities and multiple SUB sockets.
670
+
671
+ * Fixed issue 236, zmq_send() and zmq_recv() did not always return
672
+ error conditions such as EFSM properly. This bug was introduced in
673
+ version 2.1.8 by the backport of changes for issue 231.
674
+
675
+ Building
676
+ --------
677
+
678
+ * 0MQ support for Android added (Bill Roberts, Mikko Koppanen).
679
+
680
+
681
+ 0MQ version 2.1.8 (RC), released on 2011/07/28
682
+ ==============================================
683
+
684
+ Bug fixes
685
+ ---------
686
+
687
+ * Fixed issue 223, assertion failure in tcp_connecter.cpp:300 when
688
+ connecting to a server that is on an unreachable network (errno is
689
+ equal to ENETUNREACH).
690
+
691
+ * Fixed issue 228, assertion failure at rep.cpp:88 when HWM was reached.
692
+
693
+ * Fixed issue 231, assertion failure at mailbox.cpp:183 when too many
694
+ pending socketpair operations were queued (major backport from 3.0).
695
+
696
+ * Fixed issue 234, assertion failure at mailbox.cpp:77 when Ctrl-C was
697
+ used (only affected git master following backport for 231).
698
+
699
+ * Fixed issue 230, SIGPIPE killing servers when client disconnected, hit
700
+ OS/X only.
701
+
702
+ Note: this release was renamed "release candidate" due to issue 236,
703
+ fixed in 2.1.9.
704
+
705
+
706
+ 0MQ version 2.1.7 (Stable), released on 2011/05/12
707
+ ==================================================
708
+
709
+ Bug fixes
710
+ ---------
711
+
712
+ * Fixed issue 188, assert when closing socket that had unread multipart
713
+ data still on it (affected PULL, SUB, ROUTER, and DEALER sockets).
714
+
715
+ * Fixed issue 191, message atomicity issue with PUB sockets (an old issue).
716
+
717
+ * Fixed issue 199 (affected ROUTER/XREP sockets, an old issue).
718
+
719
+ * Fixed issue 206, assertion failure in zmq.cpp:223, affected all sockets
720
+ (bug was introduced in 2.1.6 as part of message validity checking).
721
+
722
+ * Fixed issue 211, REP socket asserted if sent malformed envelope (old issue
723
+ due to abuse of assertions for error checking).
724
+
725
+ * Fixed issue 212, reconnect failing after resume from sleep on Windows
726
+ (due to not handling WSAENETDOWN).
727
+
728
+ * Properly handle WSAENETUNREACH on Windows (e.g. if client connects
729
+ before server binds).
730
+
731
+ * Fixed memory leak with threads on Windows.
732
+
733
+ Changes
734
+ -------
735
+
736
+ * Checks zmq_msg_t validity at each operation.
737
+
738
+ * Inproc performance tests now work on Windows.
739
+
740
+ * PGM wire format specification improved in zmq_pgm(7)
741
+
742
+ * Added thread latency/throughput performance examples.
743
+
744
+ * Added "--with-system-pgm" configure option to use already installed
745
+ OpenPGM.
746
+
747
+ * Runtime checking of socket and context validity, to catch e.g. using a
748
+ socket after closing it, or passing an invalid pointer to context/socket
749
+ methods.
750
+
751
+ * Test cases moved off port 5555, which conflicts with other services.
752
+
753
+ * Clarified zmq_poll man page that the resolution of the timeout is 1msec.
754
+
755
+
756
+ 0MQ version 2.1.6 (Broken), released on 2011/04/26
757
+ ==================================================
758
+
759
+ Note that this version contained a malformed patch and is not usable.
760
+ It is not available for download, but is available in the git via the
761
+ 2.1.6 tag.
762
+
763
+ 0MQ version 2.1.5 (Broken), released on 2011/04/20
764
+ ==================================================
765
+
766
+ Note that this version contained a malformed patch and is not usable.
767
+ It is not available for download, but is available in the git via the
768
+ 2.1.5 tag.
769
+
770
+
771
+ 0MQ version 2.1.4 (Stable), released on 2011/03/30
772
+ ==================================================
773
+
774
+ Bug fixes
775
+ ---------
776
+
777
+ * Fix to OpenPGM which was asserting on small messages (Steven McCoy).
778
+
779
+ Changes
780
+ -------
781
+
782
+ * Upgraded OpenPGM to version 5.1.115 (Pieter Hintjens).
783
+
784
+ * OpenPGM build changed to not install OpenPGM artifacts.
785
+
786
+
787
+ 0MQ version 2.1.3 (Stable), released on 2011/03/21
788
+ ==================================================
789
+
790
+ Bug fixes
791
+ ---------
792
+
793
+ * Fix to PUSH sockets, which would sometimes deliver tail frames of a
794
+ multipart message to new subscribers (Martin Sustrik).
795
+
796
+ * Fix to PUB sockets, which would sometimes deliver tail frames of a
797
+ multipart message to new subscribers (Martin Sustrik).
798
+
799
+ * Windows build was broken due to EPROTONOSUPPORT not being defined. This
800
+ has now been fixed (Martin Sustrik).
801
+
802
+ * Various fixes to make OpenVMS port work (Brett Cameron).
803
+
804
+ * Corrected Reference Manual to note that ZMQ_LINGER socket option may be
805
+ set at any time, not just before connecting/binding (Pieter Hintjens).
806
+
807
+ * Fix to C++ binding to properly close sockets (Guido Goldstein).
808
+
809
+ * Removed obsolete assert from pgm_socket.cpp (Martin Sustrik).
810
+
811
+ Changes
812
+ -------
813
+
814
+ * Removed stand-alone devices (/devices subdirectory) from distribution.
815
+ These undocumented programs remain available in older packages (Pieter
816
+ Hintjens).
817
+
818
+ * OpenPGM default rate raised to 40mbps by default (Steven McCoy).
819
+
820
+ * ZMQ_DEALER and ZMQ_ROUTER macros provided to ease upgrade to 0MQ/3.0.
821
+ These are scheduled to replace ZMQ_XREQ and ZMQ_XREP (Pieter Hintjens).
822
+
823
+ * Added man page for zmq_device(3) which was hereto undocumented (Pieter
824
+ Hintjens).
825
+
826
+ * Removed zmq_queue(3), zmq_forwarder(3), zmq_streamer(3) man pages
827
+ (Pieter Hintjens).
828
+
829
+ OpenPGM Integration
830
+ -------------------
831
+
832
+ * Upgraded OpenPGM to version 5.1.114 (Steven McCoy, Mikko Koppanen).
833
+
834
+ * Build system now calls OpenPGM build process directly, allowing easier
835
+ future upgrades of OpenPGM (Mikko Koppanen).
836
+
837
+ * Build system allows configuration with arbitrary versions of OpenPGM
838
+ (./configure --with-pgm=libpgm-x.y.z) (Mikko Koppanen).
839
+
840
+ * OpenPGM uses new PGM_ODATA_MAX_RTE controlling original data instead of
841
+ PGM_TXW_MAX_RTE covering entire channel (Steven McCoy).
842
+
843
+ Building
844
+ --------
845
+
846
+ * 0MQ builds properly on FreeBSD (Mikko Koppanen).
847
+
848
+
849
+ 0MQ version 2.1.2 (rc2), released on 2011/03/06
850
+ ===============================================
851
+
852
+ Bug fixes
853
+ ---------
854
+
855
+ * 0MQ now correctly handles durable inproc sockets; previously it ignored
856
+ explicit identities on inproc sockets.
857
+
858
+ * Various memory leaks were fixed.
859
+
860
+ * OpenPGM sender/receiver creation fixed.
861
+
862
+
863
+ 0MQ version 2.1.1 (rc1), released on 2011/02/23
864
+ ===============================================
865
+
866
+ New functionality
867
+ -----------------
868
+
869
+ * New socket option ZMQ_RECONNECT_IVL_MAX added, allows for exponential
870
+ back-off strategy when reconnecting.
871
+
872
+ * New socket option ZMQ_RECOVERY_IVL_MSEC added, as a fine-grained
873
+ counterpart to ZMQ_RECOVERY_IVL (for multicast transports).
874
+
875
+ * If memory is exhausted, 0MQ warns with an explicit message before
876
+ aborting the process.
877
+
878
+ * Size of inproc HWM and SWAP is sum of peers' HWMs and SWAPs (Douglas
879
+ Greager, Martin Sustrik).
880
+
881
+ Bug fixes
882
+ ---------
883
+
884
+ * 0MQ no longer asserts in mailbox.cpp when multiple peers connect with
885
+ the same identity.
886
+
887
+ * 0MQ no longer asserts when rejecting an oversized message.
888
+
889
+ * 0MQ no longer asserts in pipe.cpp when the swap fills up.
890
+
891
+ * zmq_poll now works correctly with an empty poll set.
892
+
893
+ * Many more.
894
+
895
+ Building
896
+ --------
897
+
898
+ * 0MQ now builds correctly on CentOS, Debian 6, and SunOS/gcc3.
899
+
900
+ * Added WithOpenPGM configuration into MSVC builds.
901
+
902
+ Known issues
903
+ ------------
904
+
905
+ * OpenPGM integration is still not fully stable.
906
+
907
+
908
+ 0MQ version 2.1.0 (Beta), released on 2010/12/01
909
+ ================================================
910
+
911
+ New functionality
912
+ -----------------
913
+
914
+ * New semantics for zmq_close () and zmq_term () ensure that all messages
915
+ are sent before the application terminates. This behaviour may be
916
+ modified using the new ZMQ_LINGER socket option; for further details
917
+ refer to the reference manual.
918
+
919
+ * The new socket options ZMQ_FD and ZMQ_EVENTS provide a way to integrate
920
+ 0MQ sockets into existing poll/event loops.
921
+
922
+ * Sockets may now be migrated between OS threads, as long as the
923
+ application ensures that a full memory barrier is issued.
924
+
925
+ * The 0MQ ABI exported by libzmq.so has been formalised; DSO symbol
926
+ visibility is used on supported platforms to ensure that only public ABI
927
+ symbols are exported. The library ABI version has been set to 1.0.0 for
928
+ this release.
929
+
930
+ * OpenPGM has been updated to version 5.0.92. This version no longer
931
+ depends on GLIB, and integration with 0MQ should be much improved.
932
+
933
+ * zmq_poll() now honors timeouts precisely, and no longer returns if no
934
+ events are signaled.
935
+
936
+ * Blocking calls now return EINTR if interrupted by the delivery of a
937
+ signal; this also means that language bindings which previously had
938
+ problems with handling SIGINT/^C should now work correctly.
939
+
940
+ * The ZMQ_TYPE socket option was added; this allows retrieval of the socket
941
+ type after creation.
942
+
943
+ * Added a ZMQ_VERSION macro to zmq.h for compile-time API version
944
+ detection.
945
+
946
+ * The ZMQ_RECONNECT_IVL and ZMQ_BACKLOG socket options have been added.
947
+
948
+ Bug fixes
949
+ ---------
950
+
951
+ * Forwarder and streamer devices now handle multi-part messages correctly.
952
+
953
+ * 0MQ no longer asserts when malformed data is received on the wire.
954
+
955
+ * 0MQ internal timers now work correctly if the TSC jumps backwards.
956
+
957
+ * The internal signalling functionality (mailbox) has been improved
958
+ to automatically resize socket buffers on POSIX systems.
959
+
960
+ * Many more.
961
+
962
+ Building
963
+ --------
964
+
965
+ * 0MQ now builds correctly with many more non-GCC compilers (Sun Studio,
966
+ Intel ICC, CLang).
967
+
968
+ * AIX and HP-UX builds should work now.
969
+
970
+ * FD_SETSIZE has been set to 1024 by default for MSVC builds.
971
+
972
+ * Windows builds using GCC (MinGW) now work out of the box.
973
+
974
+ Distribution
975
+ ------------
976
+
977
+ * A simple framework for regression tests has been added, along with a few
978
+ basic self-tests. The tests can be run using "make check".