forked from zeromq/libzmq
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChangeLog
More file actions
1776 lines (1252 loc) · 56.4 KB
/
ChangeLog
File metadata and controls
1776 lines (1252 loc) · 56.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0MQ version 2.0.6 (Beta), released on 2010/03/16
================================================
Distribution
------------
* The 0MQ core distribution has been slimmed down to include only the core
C library and C++ language binding. Pointers to other language bindings can
be found on the website. Examples have also been removed from the
core and can be found elsewhere. Performance tests specific to a language
binding can be found bundled with that language binding.
* The 0MQ reference manual supplied with the distribution has been
extensively rewritten, and is now provided in HTML as well as UNIX
manpage format.
* Commencing with this release, a 0MQ version numbering scheme has been
introduced. The numbering scheme used is MAJOR.MINOR.PATCH. The "Beta" or
"Stable" label is informative only and does not constitute
part of the library version number, therefore this release is numbered
2.0.6 as the sixth release of 2.0.
* The version of OpenPGM bundled with 0MQ has been updated to the stable
2.0.24 release.
Building
--------
* Many portability fixes, including support for new platforms: FreeBSD,
NetBSD, HP-UX and Cygwin.
* Invocation of configure has been simplified, all functionality is now
built by default with the exception of OpenPGM.
Interface
---------
* The udp transport has been renamed to epgm to avoid confusion with
unreliable unicast.
* A ZMQ_POLLERR constant has been added to allow for polling on errors on
Berkeley sockets with zmq_poll().
* The zmq_version() function has been introduced and returns the version
number of the 0MQ library.
* The zmq_flush() function and ZMQ_NOFLUSH flag of zmq_send() have been
deprecated and will be removed in a future release.
Wire format
-----------
* The 0MQ wire format has been changed. A flags field has been added to
allow for future extensions.
New functionality
-----------------
* The experimental ZMQ_P2P socket type has been implemented.
* Flow control has been implemented for all socket types. For details see
the ZMQ_HWM and ZMQ_LWM socket options.
* Subscription filters are internally matched with O(1) complexity.
Licensing
---------
* iMatix corporation has granted the following exception regarding static
linking with the 0MQ library:
As a special exception, iMatix gives you permission to link this
library with independent modules to produce an executable,
regardless of the license terms of these independent modules, and
to copy and distribute the resulting executable under terms of
your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of
that module. An independent module is a module which is not
derived from or based on this library. If you modify this
library, you must extend this exception to your version of the
library.
Thanks to
---------
This release of 0MQ was made possible by many contributors from the community,
including:
* Adrian von Bidder <avbidder@fortytwo.ch>, for contributing Debian packages.
* Aleksey Yeschenko <aleksey@yeschenko.com>, for contributing a Lua binding.
* Alessio Spadaro <alessio.spadaro@finservice.com>, for help with porting to
HP-UX.
* Bernd Prager <bernd@prager.ws>, for help with porting to Cygwin.
* Brian E. Granger <ellisonbg@gmail.com>, for maintaining the Python binding.
* Martin Hurton <hurtonm@gmail.com>, for implementing flow control.
* Martin Lucina <mato@kotelna.sk>, for rewriting the 0MQ reference manual and
many portability fixes.
* Michael Santy <Michael.Santy@dynetics.com>, for testing this release with
Infiniband.
* Steven McCoy <steven@miru.hk>, for help with OpenPGM.
* Toralf Wittner <toralf.wittner@gmail.com>, for contributing a Haskell
binding.
-------------------------------------------------------------------------------
A full list of all changes since the release of 0MQ 2.0 beta2 follows:
commit 38c942ae648115ac10320968eb4b5e235ef15674
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Mar 16 17:07:17 2010 +0100
Add Git location to README
commit 6d5a9e96400025044af8172887ef99589c0d1eb1
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Mar 16 16:20:23 2010 +0100
Update README
commit ad75d0213483f3c585ce144386623e64e65eca0d
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Mar 16 15:48:16 2010 +0100
Add MSVC build files to distribution
commit a9e0c3cd7e0c54f872749f387cf3d69b216bc613
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Mar 16 15:37:47 2010 +0100
Removing leftover MSVC builds
commit 5472861179ff232c55e7a7021a93da5c680f2017
Merge: 8a3f974 8fcf6ff
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Mar 16 15:24:57 2010 +0100
Merge branch 'master' of git@github.com:sustrik/zeromq2
commit 8a3f97400a2b3ef2ec088a00868087b85cfd81b6
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Mar 16 15:23:55 2010 +0100
Clarify zmq_poll restrictions
commit 1705ec224745b935e13d8f18ef81bcbef45ff143
Author: Martin Lucina <mato@kotelna.sk>
Date: Tue Mar 16 15:19:38 2010 +0100
C++ interface documentation updates
commit 8fcf6ffb67aba2ff9f78f4ba327d29755f03535a
Author: Martin Lucina <mato@kotelna.sk>
Date: Mon Mar 15 15:47:17 2010 +0100
Cleanups to autogen.sh
commit fceba036279a0e9bb39aebd862b70ad1bb5b3f40
Author: Martin Lucina <mato@kotelna.sk>
Date: Mon Mar 15 15:45:38 2010 +0100
Cleanups to autogen.sh
Use POSIX "command -v" construct to test for prerequisite commands
Clarify error messages on failure
commit 61ad236e9543a569fe066872a5fda4fa40ea7591
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Sat Mar 13 14:40:10 2010 +0100
ZMQ_NOFLUSH and zmq_flush obsoleted
commit c42343d3f027248514344aec9e3814dfe1047d59
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Sat Mar 13 12:34:55 2010 +0100
pipe_t::rollback removes only unfinished message from the pipe rather than all unflushed messages
commit dcb983699e52bf2e075baaeef250bcd3c82e4846
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Sat Mar 13 08:59:46 2010 +0100
zmq_queue implementation added
commit 22db38bf3d9c96a840af50300632d44fd01ed3a8
Author: unknown <bundra@.(none)>
Date: Fri Mar 12 20:20:25 2010 +0100
MSVC build: C++ perf tests removed; all executables go into bin directory
commit c08a7f8896e8fdae8379d2fce552b360daaeadc8
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Fri Mar 12 20:02:19 2010 +0100
C perf tests are built non-optionally; C++ perf tests removed
commit 1fbeba2fe3c3bd6046eea4d6432791194d4238f2
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Fri Mar 12 19:05:56 2010 +0100
simplify configuration summary
commit 66b67fbdf2b047ef7adb8ec018a6fe89dd9cbfca
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Fri Mar 12 18:58:29 2010 +0100
devices are built unconditionally
commit 430aa533347dcbca57857d318a6898f480967cba
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Fri Mar 12 18:42:38 2010 +0100
text concerning language bindings removed from configure
commit 54df388aced3ae059009eec3df66c7dea717747b
Author: unknown <bundra@.(none)>
Date: Fri Mar 12 18:05:38 2010 +0100
Java binding removed from MSVC build
commit 6badd204d5686de8b2a6e8ee88da78260c0ff949
Author: Martin Hurton <hurtonm@gmail.com>
Date: Wed Mar 3 17:25:46 2010 +0100
Implement flow control for ZMQ_REP sockets
commit 923609b0922c3bf07f16c8c99aba4fe98f08ef60
Author: Martin Hurton <hurtonm@gmail.com>
Date: Tue Mar 2 22:23:34 2010 +0100
Implement flow control for ZMQ_REQ sockets
commit 42e575cb6b62fe1e5d12d2e4fb5c6874d47eb57e
Author: Martin Hurton <hurtonm@gmail.com>
Date: Tue Mar 2 12:41:33 2010 +0100
Implement flow control fox ZMQ_XREP sockets
commit e34184acc327ae4b085a1a50ff6502e2dc148522
Author: Martin Hurton <hurtonm@gmail.com>
Date: Tue Mar 2 11:15:50 2010 +0100
Implement flow control for ZMQ_XREQ sockets
commit 06d7a447378c8e9f0805c219deaf8e7e7ef1eeb0
Author: Martin Hurton <hurtonm@gmail.com>
Date: Tue Mar 2 10:48:30 2010 +0100
Implement flow control for ZMQ_PUB sockets
commit f9c84a1a689f4f64cfa45cb22d4f02ec246c7f93
Author: Martin Hurton <hurtonm@gmail.com>
Date: Mon Mar 1 17:21:23 2010 +0100
Implement flow control for ZMQ_DOWNSTREAM sockets
commit 5d4f6b18cd57897cc0e77e474118e104a0d5cfc3
Author: Martin Hurton <hurtonm@gmail.com>
Date: Mon Mar 1 16:55:13 2010 +0100
Implement flow control for ZMQ_P2P sockets
commit f9521c6b6a35103c03b742a311a34d7b04da0b84
Author: Martin Hurton <hurtonm@gmail.com>
Date: Tue Mar 2 09:02:40 2010 +0100
PGM: implement flow control
commit 61ee6fae536a8000be87b5aaf271f6519a3b7d3f
Author: Martin Hurton <hurtonm@gmail.com>
Date: Mon Mar 1 10:13:26 2010 +0100
Implement flow control
This commit introduces the necessary changes necessary
for implementing flow control. None of the socket types
implements the flow control yet. The code will crash when
the flow control is enabled and the thw lwm is reached.
The following commits will add flow-control support for
individual socket types.
commit 31d36104aa7caead6f299f0c5cb58a9fde7cf9b0
Author: Martin Lucina <mato@kotelna.sk>
Date: Fri Mar 12 10:34:11 2010 +0100
devices/ build fixed
commit 10bbe6af9900b4609cfcadc031dcf4dcb8ebfb3b
Author: Martin Lucina <mato@kotelna.sk>
Date: Thu Mar 11 20:43:51 2010 +0100
Cleanup .gitignore
commit 27e2d08449ea52649e2e42b263f76fbd5d8382c5
Author: Martin Lucina <mato@kotelna.sk>
Date: Thu Mar 11 20:33:27 2010 +0100
Restructure language bindings
C and C++ headers moved from bindings/ to include/, bindings/ removed
--with-c and --with-cpp options to configure removed, C and C++ now built
and installed by default
commit 90944759b66771bbe399922eecedc5095fa2a509
Author: Martin Lucina <mato@kotelna.sk>
Date: Thu Mar 11 20:12:55 2010 +0100
Removed Java binding from core distribution
commit 9fda070e4d66d538e3c709c6cb8934cbf4442c29
Author: Martin Lucina <mato@kotelna.sk>
Date: Wed Mar 10 23:20:43 2010 +0100
Typeset literal correctly
commit 0a1e0beaa2849a51ea659eba0f142ce340d2cc6d
Author: Martin Lucina <mato@kotelna.sk>
Date: Wed Mar 10 23:18:08 2010 +0100
Fixes to PGM wire format description
commit 5fef480aeb28424769d97c92f331d87f87b87c85
Author: Martin Lucina <mato@kotelna.sk>
Date: Wed Mar 10 13:52:41 2010 +0100
Fixes to TCP wire format specification
commit 8f90ae8dfdf5efbb6c8429897dc95cad621af00b
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Wed Mar 10 12:40:13 2010 +0100
wire formats in docs clarified
commit 98801ebcaea1117ae596a3bae0653c3720a94359
Author: Martin Lucina <mato@kotelna.sk>
Date: Wed Mar 10 12:19:39 2010 +0100
Documentation fixes
commit bc468b34513a0fd76e69e03f3f978abd7d8c3871
Author: Martin Lucina <mato@kotelna.sk>
Date: Tue Mar 9 19:29:41 2010 +0100
Add missing section with zmq_version()
commit edebff902a9785ecdb3a27f6a78ac7cc68b38a56
Author: Martin Lucina <mato@kotelna.sk>
Date: Tue Mar 9 18:58:59 2010 +0100
Add dependency for zmq_epgm.7
commit ca70b40383fd12ce866054dd87cecb3d732c8d9f
Author: Martin Lucina <mato@kotelna.sk>
Date: Tue Mar 9 18:53:42 2010 +0100
Hack, zmq_epgm.7 needs to be copied from zmq_pgm.7
commit 1aee86408d575d6572b071d7564da7f006d1757e
Author: Martin Lucina <mato@kotelna.sk>
Date: Tue Mar 9 18:47:31 2010 +0100
Documentation rewrite
commit d790940fd06060c8a2c624b0e41e470ad31ae0d8
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Mar 9 18:14:49 2010 +0100
udp transport renamed to epgm
commit 5a776f5597cac632ca507e2d80ca0de064bba1d6
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Mar 9 17:34:28 2010 +0100
PGM late joiners would start receiving a complete message rather than a message part
commit 0f891e091cc46775226ee1fe28784876395a7b92
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Mar 9 17:24:42 2010 +0100
message flags from the wire are written to zmq_msg_t and vice versa
commit 531c6af0d4df606ddef15da821dad20399b9480a
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Mar 9 16:56:53 2010 +0100
message flags added to zmq_msg_t strcuture
commit 96ccc1c5fceb56bd7ffc2e6bef9ddab5347d722b
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Mar 9 15:10:44 2010 +0100
'flags' fields added to the wire format
commit e04e2cdbbaf351eb04164bdcd293fcb8fa22a9a4
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Mar 9 08:43:20 2010 +0100
rollback functionality added to pipe
commit 9481c69b0f60068f12aa26699588fed6a8faceec
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Sat Mar 6 16:32:19 2010 +0100
problem with NIC name resolution on OSX fixed
commit 26b0aea24f9add0a1811e23f709d96b44b459571
Author: Martin Lucina <mato@kotelna.sk>
Date: Wed Mar 3 17:01:08 2010 +0100
Win32 build fixes
commit 352da8ae8775f057a7ec67a7bd3f2270ac1c4d0f
Author: unknown <bundra@.(none)>
Date: Wed Mar 3 15:47:21 2010 +0100
type mismatch in tcp_listener (win version) fixed
commit 14054ecce7d367d8e3d47f84f72d2fc748aec8e4
Author: Martin Hurton <hurtonm@gmail.com>
Date: Wed Mar 3 09:41:57 2010 +0100
Fix typo: zmq_close -> zmq_msg_close
commit 708298d798693a19ace9a4811a3760d8de0a5c1d
Author: Martin Hurton <hurtonm@gmail.com>
Date: Wed Mar 3 00:08:11 2010 +0100
Fix possible lockups when reading from ZMQ_REP sockets
commit 157a66fc42d46c79edc01f6feed8f482fb5d53f1
Author: unknown <bundra@.(none)>
Date: Mon Mar 1 18:33:16 2010 +0100
polling on POSIX sockets returns POLLERR (win32)
commit 4e7158b67dcbbc307e76616a85aa34cc83ad6606
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Mon Mar 1 17:40:39 2010 +0100
return POLLERR from polling on POSIX sockets (linux version)
commit 7442f53956e5d32d9c6a3543f8bef1664a773926
Merge: ea0a44c 83f85ea
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Sat Feb 27 14:18:21 2010 +0100
Merge branch 'master' of git@github.com:sustrik/zeromq2
commit ea0a44c8a964cad4276ec216319d32e95e4a4bc0
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Sat Feb 27 14:18:02 2010 +0100
Ruby binding removed
commit 83f85ea51dee1fb2fcee22543a90361b860d6cb8
Author: unknown <bundra@.(none)>
Date: Sat Feb 27 13:49:53 2010 +0100
ruby binding removed from msvc build
commit 696ada883331359bee76b1ea996d8ac846624bea
Author: unknown <bundra@.(none)>
Date: Sat Feb 27 13:36:52 2010 +0100
python binding removed from nsvc build
commit 45414b5444db0a1f7e325c7dce92fbe84667d093
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Sat Feb 27 12:23:22 2010 +0100
python binding removed
commit efefa069b2ce407a7da4328ab024c47920a76960
Author: Martin Lucina <mato@kotelna.sk>
Date: Fri Feb 26 20:03:58 2010 +0100
Cygwin support
commit deda7ca54a3c8f1ba735e8654ca87f8808606122
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Fri Feb 26 17:28:09 2010 +0100
Java Poller patch
commit 4a1a83887d6faf36cb01f1c69142e6aafafe5eba
Author: unknown <bundra@.(none)>
Date: Fri Feb 26 16:42:52 2010 +0100
Win32 build of Java binding fixed
commit 4440b13c359dab2c1ba55e31c604ac093172d68e
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Fri Feb 26 15:55:36 2010 +0100
Poller object implemented in Java binding
commit 1c4daf79ce12da75acb8010c99b3c1d509a7a950
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Fri Feb 26 14:28:20 2010 +0100
MIT license text added
commit 57e057c825156b6effd15c07ee302f4ccdd2561c
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Thu Feb 25 16:29:17 2010 +0100
1st version of Java poll added
commit ed8fe68383ca94ca33a9919bc2ed5b5a5d62cab0
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Wed Feb 24 17:27:31 2010 +0100
handle invalid PGM connection string decently
commit be51cfa419bb6c75eb24d241769a7c5543c432a7
Merge: 0b4172b b7f01f9
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Wed Feb 24 16:19:53 2010 +0100
Merge branch 'master' of git@github.com:sustrik/zeromq2
commit 0b4172b8689b60ce254c6823d69962bbdbd031d4
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Wed Feb 24 16:19:14 2010 +0100
minor cast issues on cygwin fixed
commit b7f01f9071c26292c30517bac18dae92efaf3ffb
Author: unknown <bundra@.(none)>
Date: Wed Feb 24 15:33:03 2010 +0100
chat example removed from win build; missing fd_signaler_t::poll on win added
commit 476ebde6280a428e2dd8fee7c70670aa449831c9
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Wed Feb 24 13:02:29 2010 +0100
use binary UUIDs instead of string representation to save some bytes
commit cc5c30f5dc2d6490c0199709ceb2d86e3cc3895d
Author: Martin Lucina <mato@kotelna.sk>
Date: Wed Feb 24 12:09:24 2010 +0100
Fix: OpenPGM is now distributed as .tar.gz
commit bba36e6ee6ecdee5f3ded30b9f11e7684393bfd2
Author: Martin Lucina <mato@kotelna.sk>
Date: Wed Feb 24 12:07:24 2010 +0100
Disable IPv6 support
The current IPv6 support is half-assed and breaks for too many people.
Revert back to IPv4 only for now.
commit 39b89619742cf4aed25a5b3ccc5ff6d23d9d15cf
Author: Martin Lucina <mato@kotelna.sk>
Date: Wed Feb 24 09:41:10 2010 +0100
Update OpenPGM to 2.0.24 (stable)
commit ccd47f1ee8c9268b99478c6cce3d8b1aada62566
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Wed Feb 24 09:17:05 2010 +0100
chat example moved to separate repo
commit 8980a985828579d03f031b18a1bebcd65eded417
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Wed Feb 24 08:29:29 2010 +0100
zmq_error used from ruby binding
commit 551fa104ffdb8c417b7d75ce70c463992e7d4652
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Feb 23 23:43:31 2010 +0100
zmq_errno used in C++ binding
commit 95329719cda2b941e422d06daad3a7ba4c4a8829
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Feb 23 23:37:05 2010 +0100
zmq_errno is exported from the DLL
commit 2441ef11a22170499d7ae12865dc98a61230f7ed
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Feb 23 23:28:25 2010 +0100
zmq_errno helper function added
commit 2dd55605ea3956413cb25cab705ffdbdb2e00da5
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Feb 23 22:13:56 2010 +0100
recv fails after polling for IN on REQ socket
commit 025c9e173c58971993858ea66fb2eeaf08de195d
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Feb 23 17:22:52 2010 +0100
execution disabled on certain source files; some comments on java binding; MSVC temp files added to .gitignore
commit 71b4947f951f0120e4aadccb42f2452bb95dba06
Author: unknown <bundra@.(none)>
Date: Tue Feb 23 12:02:55 2010 +0100
Win32 build fixed
commit 7c0df6ee02eb792c6afea7f047539840addb2f02
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Feb 23 11:52:33 2010 +0100
Java binding beautified, inline documentation added
commit ef1b5974891a30b15299464859023a531c2328f8
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Feb 23 10:01:54 2010 +0100
minor fix in zmq_socket(3) man page
commit b9a612ff3f74a3add607b054213d0f52e85cc426
Merge: f249555 61f0ef5
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Mon Feb 22 18:19:51 2010 +0100
Merge branch 'master' of git@github.com:sustrik/zeromq2
commit f24955519ac0d3b0da5dd87fbb7bfc8cc1e24295
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Mon Feb 22 18:19:26 2010 +0100
zmq_poll doesn't exit when infinite timeout is set and interrupt occurs
commit 61f0ef569b2f879b6b4e1f247253ceec08e774c7
Author: Martin Lucina <mato@kotelna.sk>
Date: Mon Feb 22 18:16:40 2010 +0100
NetBSD: Check for and use atomic_ops(3) if available
commit 3a69cca386a895313729f418ee44443794feed0f
Author: Martin Lucina <mato@kotelna.sk>
Date: Mon Feb 22 16:42:13 2010 +0100
Fix $build_doc/$install_man check yet again
commit 1294c1d33a1c73218eb94bf18ceb9ae873d08891
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Sun Feb 21 16:58:53 2010 +0100
typo in zmq_ipc(7) fixed
commit ff99d753ae30a7b5fef730fdcf1643e2928d9993
Author: malosek <malosek@fastmq.com>
Date: Sat Feb 20 21:03:12 2010 +0100
Minor buid system tunning
commit 740e531fbb47ad324737c075251c674e9dced6f1
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Sat Feb 20 09:11:30 2010 +0100
Aleksey Yeschenko added to the credit section of AUTHORS file
commit 57148b1fdeec0080b77ecfa837add9557226261c
Author: Martin Lucina <mato@kotelna.sk>
Date: Fri Feb 19 18:23:54 2010 +0100
Add missing check for install_man=yes
Fixes git builds w/o asciidoc, bug introduced in 46824abe
commit 8b86dcf81cc7b80267f334f4f26dfd319532ad25
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Fri Feb 19 17:50:47 2010 +0100
build on cygwin enabled
commit 727054547f32680f7db098497c2d7b1a0b20e2d8
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Fri Feb 19 17:02:07 2010 +0100
don't check for identity, if the connection is anonymous
commit aff1f6621ae13083c7f15f7f1f808560254a2dcb
Merge: 75f571c 2a79a94
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Fri Feb 19 15:25:05 2010 +0100
Merge branch 'master' of git@github.com:sustrik/zeromq2
commit 75f571c8844231f4172f131e1dd6ba2348eb54e5
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Fri Feb 19 15:24:43 2010 +0100
Multi-hop REQ/REP, part XII., generate unique identities for anonymous connections
commit 2a79a943de417679c562cd4a917e1d1bc19b0d25
Author: Martin Lucina <mato@kotelna.sk>
Date: Thu Feb 18 19:38:15 2010 +0100
Add NetBSD support
commit 776b12633981fd95050e138daeeba00a65d9532b
Author: Martin Lucina <mato@kotelna.sk>
Date: Thu Feb 18 19:27:35 2010 +0100
Fix typo
commit ab27f84b14a317d78a9dd145ef5c82e0ef88f583
Author: Martin Lucina <mato@kotelna.sk>
Date: Thu Feb 18 19:27:15 2010 +0100
libstdc++ depends on libm on some platforms
commit 495f0d105f809a265c34aa9a0eb20af0dcdcf283
Author: Martin Lucina <mato@kotelna.sk>
Date: Thu Feb 18 17:29:14 2010 +0100
Fix detection of libstdc++
We only care about libstdc++ when using GNU C++.
Further, libstdc++ depends on libm on some platforms, fix this.
commit 46824abeb2b016c51f406401d965816f71189aed
Author: Martin Lucina <mato@kotelna.sk>
Date: Thu Feb 18 17:25:49 2010 +0100
Never build docs from tarball releases
This fixes the build_doc logic to work as advertised and never
try to (re)build documentation when working with a tarball release.
commit 8be491b7bdb8525eb37cebf355697c566a482e2d
Author: Martin Lucina <mato@kotelna.sk>
Date: Thu Feb 18 13:46:00 2010 +0100
Use feature test macros more conservatively
It turns out that feature test macros are a complete mess, and defining
_GNU_SOURCE and _POSIX_C_SOURCE together breaks some systems. So we try
and define the appropriate "make everything visible" combination specific
to each system instead. This may still break something, so people should
test their platforms and speak up if so.
commit d008637bc42da3fca50e423c2df0736be2745ac7
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Wed Feb 17 21:16:59 2010 +0100
one more attempt to fix the previous win32 problem
commit f97da5e6449b183ad3ebb9b0ba8c37ff3dc17387
Merge: e385319 41354bf
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Wed Feb 17 20:33:46 2010 +0100
Merge branch 'master' of git@github.com:sustrik/zeromq2
commit e385319e5aaff6deafddfb216b24f026b461caa6
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Wed Feb 17 20:33:00 2010 +0100
recv returning -1 while errno=0 fixed
commit 41354bfa9820eb4495cf98342177d036df2a7dc7
Author: unknown <bundra@.(none)>
Date: Wed Feb 17 20:16:19 2010 +0100
zmq_version fixed on Win32 platform
commit f745c96a9bcf930d10fe31de5f7b3e772cccfa83
Author: Martin Lucina <mato@kotelna.sk>
Date: Wed Feb 17 15:40:26 2010 +0100
Add POSIX and GNU Feature Test Macros
This should fix more exotic POSIX platforms such as HPUX which insist on
having _POSIX_C_SOURCE defined to get proper threading behaviour. We also
define _GNU_SOURCE so that we get any extensions on systems with glibc, e.g.
eventfd.
commit 9d8623b28f09f5a6db94c7d69ae264984ef1fbe3
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Wed Feb 17 08:30:27 2010 +0100
ZMQII-76: Bug in how replies are handled when the REQ endpoint goes away
commit 33cb20a747a2ca2c7b0487b023cfd6548ffe11e8
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Feb 16 23:31:17 2010 +0100
ZMQII-77: Put librbzmq symbols into ZMQ module
commit 1e7878489dc5d3013b5e5858fe404ab6b4a6947a
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Feb 16 23:02:59 2010 +0100
exconf.rb checks for libzmq.so installation
commit 8214d386c3f10dcc7f034a1159e82aa2d470829f
Merge: 4190f64 96b2690
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Feb 16 22:20:09 2010 +0100
Merge branch 'master' of git@github.com:sustrik/zeromq2
commit 4190f64d8cfc3950bc456ea7793db72130d05feb
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Feb 16 22:19:33 2010 +0100
Special exception clause added to LGPL license
commit 96b2690716a811a4c782de0eccfb9affa398cfe4
Merge: 60ce5cc a2f9899
Author: Martin Lucina <mato@kotelna.sk>
Date: Tue Feb 16 19:59:32 2010 +0100
Merge branch 'master' of github.com:sustrik/zeromq2
commit 60ce5cc82a48d5881cb493a5b6b3afba19bd0863
Author: Martin Lucina <mato@kotelna.sk>
Date: Tue Feb 16 19:58:55 2010 +0100
PGM tarball should be removed on 'distclean', not 'clean'
commit b9caa319e279cd8cd367e0a64308b9e80c4ead3d
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Feb 16 18:30:38 2010 +0100
Multi-hop REQ/REP, part XI., finalise the XREQ/XREP functionality
commit 2ddce205350f11dacd8d8550f7d4e6e088c7fbcd
Merge: 43620b3 a2f9899
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Feb 16 18:03:41 2010 +0100
Merge branch 'master' of git@github.com:sustrik/zeromq2
commit a2f9899f6a1fad3f9c73fc7599445bdde0b95ec4
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Tue Feb 16 17:50:36 2010 +0100
missing COPYING file added
commit afb526f31a82b8697b5f7e73e50b14705a3a74b2
Author: Martin Lucina <mato@kotelna.sk>
Date: Tue Feb 16 00:11:38 2010 +0100
Fix 'make dist' to work with no special magic
commit 8e9b78af271ae54882abf3010260d1e80ddd70f2
Author: Martin Lucina <mato@kotelna.sk>
Date: Mon Feb 15 23:59:35 2010 +0100
Correct path for pgm distclean
commit df0c18ca17aa0dcd0e9f3737666a794b943f0982
Author: Martin Lucina <mato@kotelna.sk>
Date: Mon Feb 15 23:54:49 2010 +0100
Missed one instance of pgm2
commit b09eeeb2fac380da1e3455cdf97278850842e1c8
Author: Martin Lucina <mato@kotelna.sk>
Date: Mon Feb 15 23:52:08 2010 +0100
Update gitignore
commit 80c820d758aa65d71fbf4a24fd59d11de1f72fa5
Author: Martin Lucina <mato@kotelna.sk>
Date: Mon Feb 15 23:51:05 2010 +0100
Cleaning up more PGM cruft
commit 635e314643885ce8508ee64632bed7d6228fe8b6
Author: Martin Lucina <mato@kotelna.sk>
Date: Mon Feb 15 23:09:57 2010 +0100
Clarify python.h messages
commit 55800cea8c63ea84bd99e4c660ef1fd17a353e32
Author: Martin Lucina <mato@kotelna.sk>
Date: Mon Feb 15 23:02:24 2010 +0100
Fix typo
commit 5687661ba4a1ecf70e130047dc288cb6cff6f21a
Author: Martin Lucina <mato@kotelna.sk>
Date: Mon Feb 15 22:58:45 2010 +0100
Cleanup messages from configure.in
commit 48a90cfb347bc983362ce2bc021591d513d6a5ec
Author: Martin Lucina <mato@kotelna.sk>
Date: Mon Feb 15 22:25:01 2010 +0100
Replace check for sparc with host_cpu
commit 0ded6c1973596436d7e5c54cfb89ada4d6c7473d
Author: Martin Lucina <mato@kotelna.sk>
Date: Mon Feb 15 22:17:18 2010 +0100
Multiple fixes to --with-pgm
Disallow build --with-pgm on non-x86/AMB64 CPUs
Check correctly for all dependencies required by --with-pgm
Don't assume tar has -j
Reorder --with-pgm checks
commit 94c74d5c18183b49507d633c7b06713841cfcb03
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Mon Feb 15 21:04:34 2010 +0100
Brian Granger added to credits list
commit f96f53c9687b5a032ef45ce42154a7f944492eec
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Mon Feb 15 21:03:11 2010 +0100
ZMQ_POLLERR placeholder added to zmq.h
commit 5041b0bc0bce43e5b6d8b6c6264141d33f3c2a7c
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Mon Feb 15 20:35:00 2010 +0100
fixing the previous commit :(
commit 7778010d76e6da534307ca3f0a3506d3d7f0ec5d
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Mon Feb 15 19:58:47 2010 +0100
care taken of the fact that AI_NUMERICSERV is not defined on OSX 10.5
commit 817c89a78ea7b773046b010ca129fd1206e1c8f0
Author: malosek <malosek@fastmq.com>
Date: Mon Feb 15 19:42:05 2010 +0100
removed first dummy run of PKG_CHECK_EXISTS
commit 43620b3d35e3f3a6e49046fdc0426651bf58dedb
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Sun Feb 14 13:34:48 2010 +0100
Multi-hop REQ/REP, part X., optional delayed creation of pipes during connect
commit 4405250d93a2ad6eb3940c4bc4fe8ea32bd52f9e
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Sat Feb 13 15:30:03 2010 +0100
Multi-hop REQ/REP, part IX., pass the peer identity as far as socket_base_t
commit f5ce81f2893ec0707c2f4346740878e68b51e13a
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Sat Feb 13 14:07:30 2010 +0100
Multi-hop REQ/REP, part VIII., new blob_t type used for holding identity
commit cdc2efe9b5f0d1f45065b1c32e5eabd7e9f78a12
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Sat Feb 13 13:07:33 2010 +0100
Multi-hop REQ/REP, part VII., identity-related algorithms rewritten
commit 923eacd28a725a6b32de588fe7a54dbe252d84aa
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Sat Feb 13 09:09:40 2010 +0100
Multi-hop REQ/REP, part VI., session 'name' renamed to 'peer_identity'
commit 2e78e48503375a415d95ee8df80df9c065172abc
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Fri Feb 12 20:49:00 2010 +0100
Multi-hop REQ/REP, part V., peer identity is passed from init object to session
commit d8430f4b9a43bf8c99854298edc9f1bc35c0e8ec
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Fri Feb 12 20:03:02 2010 +0100
Multi-hop REQ/REP, part IV., add command deallocation mechanism
commit 313b5dfadd8753b341197cc109bce40e08856cf6
Author: Martin Sustrik <sustrik@250bpm.com>
Date: Fri Feb 12 19:42:35 2010 +0100
Multi-hop REQ/REP, part III., change 'type' in options to simple 'traceroute' flag