-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
15620 lines (11746 loc) · 526 KB
/
ChangeLog
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
# Generated by Makefile. Do not edit.
commit c35f65a82f1dace3a0b9afc5185dc3efc35595b5
Author: Pieter Hintjens <[email protected]>
Date: Thu May 12 12:07:51 2011 +0200
Updated NEWS for 2.1.7
NEWS | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit dae5a6cb9e589e2471558dc86c55202558e918c2
Author: Martin Sustrik <[email protected]>
Date: Sun May 8 09:03:49 2011 +0200
Async connect doesn't fail on WSAENETDOWN
Signed-off-by: Martin Sustrik <[email protected]>
NEWS | 9 +++-
src/err.cpp | 112 ++++++++++++++++++++++++++-----------------------
src/err.hpp | 12 +++++
src/tcp_connecter.cpp | 10 ++--
4 files changed, 82 insertions(+), 61 deletions(-)
commit 46738270c22c134b8bbd7546ba4c6864b42f4c75
Author: Martin Sustrik <[email protected]>
Date: Sat Apr 9 09:46:59 2011 +0200
Missing ENOTSOCK added on Win32
Signed-off-by: Martin Sustrik <[email protected]>
include/zmq.h | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
commit 52318cf705f9b0a73e88b8296d10291f7ba22a86
Merge: c42d156 141a001
Author: Pieter Hintjens <[email protected]>
Date: Sat May 7 07:23:21 2011 +0200
Updated NEWS
commit c42d156fb94b5131d385f08ff93659ffd2944e21
Author: Pieter Hintjens <[email protected]>
Date: Sat May 7 07:20:10 2011 +0200
Updated NEWS
NEWS | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
commit 141a001b046a1206336642b7aa401cbd5e82b826
Author: Pieter Hintjens <[email protected]>
Date: Fri May 6 17:09:36 2011 +0200
Updated news for issue 211
NEWS | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
commit 9a08c71d7d63544d55620391d12fab4269e3a4df
Author: Pieter Hintjens <[email protected]>
Date: Fri May 6 17:03:18 2011 +0200
Fixed issue 211 - REP assert on missing envelope
src/rep.cpp | 21 ++++++++++++++-------
src/xrep.cpp | 12 +++++++++++-
src/xrep.hpp | 1 +
3 files changed, 26 insertions(+), 8 deletions(-)
commit ddffe5db3351fbaff6086157e6a351e935d37d2e
Author: Martin Sustrik <[email protected]>
Date: Fri May 6 15:51:56 2011 +0200
Current pipe pointer in XREP out of range -- fixed.
Signed-off-by: Martin Sustrik <[email protected]>
src/xrep.cpp | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
commit 96861b9d405663d71926b21843220481ebd33062
Author: Martin Sustrik <[email protected]>
Date: Sat Apr 9 09:35:34 2011 +0200
Run-time checking for context & socket validity added
Signed-off-by: Martin Sustrik <[email protected]>
NEWS | 3 +++
doc/zmq_bind.txt | 4 ++--
doc/zmq_close.txt | 4 ++--
doc/zmq_connect.txt | 4 ++--
doc/zmq_getsockopt.txt | 4 ++--
doc/zmq_recv.txt | 4 ++--
doc/zmq_send.txt | 4 ++--
doc/zmq_setsockopt.txt | 4 ++--
doc/zmq_term.txt | 2 +-
src/ctx.cpp | 9 +++++++++
src/ctx.hpp | 6 ++++++
src/socket_base.cpp | 9 +++++++++
src/socket_base.hpp | 6 ++++++
src/zmq.cpp | 32 ++++++++++++++++----------------
14 files changed, 64 insertions(+), 31 deletions(-)
commit 24a669f96d44acd03e03212e8ad5c32ffa756f53
Author: Martin Sustrik <[email protected]>
Date: Wed May 4 12:43:23 2011 +0200
Tore Halvorsen added to the AUTHORS file
Signed-off-by: Martin Sustrik <[email protected]>
AUTHORS | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
commit 4536f014071dd85c5520057f902e288c65e3cd2b
Author: Tore Halvorsen <[email protected]>
Date: Wed May 4 12:41:10 2011 +0200
Accessing an iterator after it is accessed is not valid.
Moving the erase after the access and check agains current_id.
src/xrep.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 8e740d555b5b4383995cb3d81ff44c1e7add2da4
Author: Pieter Hintjens <[email protected]>
Date: Wed May 4 15:52:26 2011 +0200
Clarified zmq_poll man page that timeout resolution is 1msec
NEWS | 1 +
doc/zmq_poll.txt | 2 +-
2 files changed, 2 insertions(+), 1 deletions(-)
commit 71cb36d04bd74ca82aca3868e665831733995be7
Author: Pieter Hintjens <[email protected]>
Date: Tue May 3 17:30:21 2011 +0200
Fixed issue 206
NEWS | 2 ++
src/decoder.cpp | 4 ++--
2 files changed, 4 insertions(+), 2 deletions(-)
commit 0fc54c9d14c8ff137e2b8aff6e472dcefb3a0c02
Author: Pieter Hintjens <[email protected]>
Date: Mon May 2 20:09:11 2011 +0200
Updated NEWS
NEWS | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
commit 16b725ddc978633b6349eb9353263c076ad9b702
Author: Martin Sustrik <[email protected]>
Date: Mon May 2 19:28:51 2011 +0200
Current inpipe remains unchaged in XREP when other pipe terminates
When an inpipe terminated within XREP, it was erased from the array
and thus current_in (which is an index) pointed to a different
element in the array. This caused problems when we were in the
middle of reading a multipart message.
Signed-off-by: Martin Sustrik <[email protected]>
src/xrep.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
commit c688f7536ea1a2f4f8d82fcc40f962bea230dd9e
Author: Pieter Hintjens <[email protected]>
Date: Sat Apr 30 09:13:28 2011 +0200
Another fix to PUB sockets with multipart messages
src/dist.cpp | 18 ++++++++----------
1 files changed, 8 insertions(+), 10 deletions(-)
commit 10f0e7c71ed31530d3a56f9ae99ef926bfcb1090
Author: Pieter Hintjens <[email protected]>
Date: Sat Apr 30 07:37:17 2011 +0200
Updated NEWS for issue 191
NEWS | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
commit 24e56e19a82035950dd721bb9d970294f508737e
Merge: 33018b3 b6befaa
Author: Pieter Hintjens <[email protected]>
Date: Sat Apr 30 07:36:30 2011 +0200
Merge branch 'issue191'
commit b6befaad5d9ac6c4ccb13b1668b14696d7016c01
Author: Pieter Hintjens <[email protected]>
Date: Sat Apr 30 07:36:16 2011 +0200
Message atomicity in pub sockets fixed - issue 191
src/dist.cpp | 4 +++-
src/dist.hpp | 3 ---
2 files changed, 3 insertions(+), 4 deletions(-)
commit 33018b30287777bf19ac292e38861b0c4b7e2599
Author: Pieter Hintjens <[email protected]>
Date: Fri Apr 29 09:24:16 2011 +0200
Updated NEWS
NEWS | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
commit 7dc87c59ded306970763c928ff0c4c350e2a2453
Author: Martin Sustrik <[email protected]>
Date: Fri Apr 29 07:23:30 2011 +0200
WSAENETUNREACH is a valid networking error
Till now, 0MQ asserted on Windows when connect () returned
WSAENETUNREACH.
Signed-off-by: Martin Sustrik <[email protected]>
src/tcp_connecter.cpp | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
commit be403bf2ba1b61355cd0d2f8f6609408b71cde99
Author: Pieter Hintjens <[email protected]>
Date: Fri Apr 29 09:22:29 2011 +0200
Downstreamed patch for issue 191
src/dist.cpp | 70 ++++++++++++++++++++++++++++++---------------------------
src/dist.hpp | 17 +++++++------
2 files changed, 46 insertions(+), 41 deletions(-)
commit 0ec42592f31faa5e98faa38961ee736d892e0783
Author: Pieter Hintjens <[email protected]>
Date: Tue Apr 26 19:57:16 2011 +0200
Bumped version number for 2.1.7
include/zmq.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit ee185e241ec2a3091b9200cd5615cfa4f66e7a07
Author: Pieter Hintjens <[email protected]>
Date: Tue Apr 26 19:45:25 2011 +0200
Set version number for 2.1.6
include/zmq.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit d23534614452c954e7f64052ef232fd176e8897c
Author: Pieter Hintjens <[email protected]>
Date: Tue Apr 26 19:44:36 2011 +0200
Fixed NEWS for 2.1.6
NEWS | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletions(-)
commit ca24a1baa512751c54a89ab7eb5f815522d77b13
Author: Pieter Hintjens <[email protected]>
Date: Tue Apr 26 19:22:24 2011 +0200
Moved tests off 5555 (conflict with Eclipse)
Signed-off-by: Pieter Hintjens <[email protected]>
tests/test_pair_tcp.cpp | 2 +-
tests/test_reqrep_tcp.cpp | 2 +-
tests/test_shutdown_stress.cpp | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
commit 6f653e39d7a0ade569bc7e78679930a11640de4e
Author: Martin Sustrik <[email protected]>
Date: Fri Apr 22 07:51:24 2011 +0200
Assert during SUB socket termination fixed.
Fair queueing algorithm was checking whether the current pipe
is not closed in the middle of reading a multipart message.
However, this is OK when the socket is closing down.
Signed-off-by: Martin Sustrik <[email protected]>
src/fq.cpp | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
commit fa6541c34e9c9496ad3fe83758773965862e272d
Author: Pieter Hintjens <[email protected]>
Date: Tue Apr 26 10:01:56 2011 +0200
Ignore generated RHAT spec file
.gitignore | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
commit 32915f8cadc30a62524ff6fe1c70158934704117
Author: Mikko Koppanen <[email protected]>
Date: Wed Apr 20 21:55:48 2011 +0100
Backport spec file changes from upstream
Makefile.am | 1 -
builds/redhat/zeromq.spec | 139 ------------------------------------------
builds/redhat/zeromq.spec.in | 139 ++++++++++++++++++++++++++++++++++++++++++
configure.in | 3 +-
4 files changed, 141 insertions(+), 141 deletions(-)
commit 43307455e352769189d427f260c4b48a3a19f7ce
Author: Pieter Hintjens <[email protected]>
Date: Wed Apr 20 19:39:57 2011 +0200
Fixed bad commit of message validity checking
include/zmq.h | 2 +-
include/zmq.hpp | 2 +-
src/socket_base.cpp | 12 ++++++------
src/zmq.cpp | 40 +++++++++++++++++++++++++++++++---------
4 files changed, 39 insertions(+), 17 deletions(-)
commit 205533ac79e6634650c9b77c41ef934084a84619
Author: Pieter Hintjens <[email protected]>
Date: Wed Apr 20 16:17:56 2011 +0200
Updated for 2.1.6
include/zmq.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit a347a957ecf3dcbf300fd4513d8aad967a492395
Author: Pieter Hintjens <[email protected]>
Date: Wed Apr 20 16:12:15 2011 +0200
Fixed error in zmq_msg_t checking, reverted to 2.1.5
include/zmq.h | 2 +-
src/socket_base.cpp | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
commit bee9cd8aa40cf82bdb45b88e6d9fc9ef123c118e
Author: Pieter Hintjens <[email protected]>
Date: Wed Apr 20 12:39:21 2011 +0200
Updated for 2.1.6
include/zmq.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit fd089736bcaa196106f516b87b8e8b906ffa8f63
Author: Pieter Hintjens <[email protected]>
Date: Wed Apr 20 12:31:17 2011 +0200
Updated news for 2.1.5
NEWS | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
commit f5043dff3ec0c1ea4619c89de8186a6d54938d5d
Merge: c27e9d1 8b13301
Author: Pieter Hintjens <[email protected]>
Date: Wed Apr 20 12:29:28 2011 +0200
Merge branch 'master' of github.com:zeromq/zeromq2-1
commit c27e9d16ad964f3b4252df890a3ec56c1c8ff6d7
Author: Martin Sustrik <[email protected]>
Date: Tue Apr 19 08:08:15 2011 +0200
Message validity is checked in the runtime
Signed-off-by: Martin Sustrik <[email protected]>
doc/zmq_msg_close.txt | 3 ++-
doc/zmq_msg_copy.txt | 3 ++-
doc/zmq_msg_move.txt | 3 ++-
doc/zmq_recv.txt | 2 ++
doc/zmq_send.txt | 2 ++
include/zmq.h | 1 +
src/req.cpp | 2 +-
src/socket_base.cpp | 14 ++++++++++++++
src/xrep.cpp | 2 +-
9 files changed, 27 insertions(+), 5 deletions(-)
commit 8b13301225b0ee34397af53a4c824a5bf05388ba
Author: Martin Sustrik <[email protected]>
Date: Mon Apr 18 09:11:45 2011 +0200
zmq_socket(3) describes the EMFILE error code
Signed-off-by: Martin Sustrik <[email protected]>
doc/zmq_socket.txt | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
commit 2b07aaad62cfa218fcbc2f586fce94c1f9fc7284
Author: Martin Sustrik <[email protected]>
Date: Fri Apr 15 08:03:26 2011 +0200
zmq_send(3) manpage improved
Signed-off-by: Martin Sustrik <[email protected]>
doc/zmq_send.txt | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
commit 91bfeaf9b9ef1e0370fae31b14b4be3d8b02eff5
Author: Martin Sustrik <[email protected]>
Date: Fri Apr 15 07:59:28 2011 +0200
Error handling for accept on Cygwin fixed
Signed-off-by: Martin Sustrik <[email protected]>
src/tcp_listener.cpp | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
commit 6ee55af86870e102cf9dab77e7ed217068c8c4d4
Merge: 5a87743 1b55cf2
Author: Pieter Hintjens <[email protected]>
Date: Thu Apr 7 22:56:19 2011 +0200
Merge branch 'master' of github.com:zeromq/zeromq2-1
commit 5a8774373279ec9517b89ac21a945ca65fda20d2
Author: Pieter Hintjens <[email protected]>
Date: Thu Apr 7 22:56:09 2011 +0200
Reduced stress of shutdown tests
tests/test_shutdown_stress.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 1b55cf2705b04caa0fc8152e1684389d91e557f0
Author: Mikko Koppanen <[email protected]>
Date: Tue Apr 5 12:00:30 2011 +0100
Fix Win32 builds
src/tcp_socket.cpp | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
commit 5fe4e9cea8af2c9d5f22d53b92ae202c03ce9c33
Author: Mikko Koppanen <[email protected]>
Date: Mon Apr 4 22:52:02 2011 +0200
Make pkg-config dependency conditional
Signed-off-by: Mikko Koppanen <[email protected]>
autogen.sh | 6 ------
configure.in | 13 ++++++++-----
2 files changed, 8 insertions(+), 11 deletions(-)
commit 28cdcaa8f323e05f7ebb3873c62ed1fd7839136f
Author: Martin Sustrik <[email protected]>
Date: Mon Apr 4 13:12:46 2011 +0200
Another error handling issue on Win32 solved
Signed-off-by: Martin Sustrik <[email protected]>
perf/inproc_lat.cpp | 2 +-
perf/inproc_thr.cpp | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
commit 08066dcf6511faddf54ede3dd28bf14bf5f89201
Author: Martin Sustrik <[email protected]>
Date: Mon Apr 4 12:49:39 2011 +0200
Issue with error checking on Win32 platform fixed
Signed-off-by: Martin Sustrik <[email protected]>
src/thread.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 6f9cb01eab130589d9c97062847a293b7605d429
Author: Martin Sustrik <[email protected]>
Date: Mon Apr 4 12:12:06 2011 +0200
Unreferenced variable removed
Signed-off-by: Martin Sustrik <[email protected]>
src/tcp_socket.cpp | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
commit 5436832fdfe12c51c869e2cd59722b2be21a5a2a
Author: Pieter Hintjens <[email protected]>
Date: Mon Apr 4 10:50:51 2011 +0200
Fixed RPM source spec
builds/redhat/zeromq.spec | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit c493a44a2c1f2eb4e9e2aa37929b16170d849975
Author: Pieter Hintjens <[email protected]>
Date: Mon Apr 4 10:36:24 2011 +0200
Fixed bad packaging for zmq_device
builds/redhat/zeromq.spec | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 122b9a48247d12258710bde53d4298da03661a01
Author: Robert G. Jakabosky <[email protected]>
Date: Sun Apr 3 20:44:02 2011 +0200
Add note about thread-safety to zmq_msg_init_data() manpage.
Signed-off-by: Robert G. Jakabosky <[email protected]>
doc/zmq_msg_init_data.txt | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
commit 2ec3fdeff4c9b0d825cc5f1192abf3362b0bf771
Author: Pieter Hintjens <[email protected]>
Date: Sun Apr 3 14:28:07 2011 +0200
Backported inproc perf tests to 2.x api
perf/inproc_lat.cpp | 16 ++++++++--------
perf/inproc_thr.cpp | 12 ++++++------
2 files changed, 14 insertions(+), 14 deletions(-)
commit 4929636cea946892870921162388ecdf39f5267a
Author: Mikko Koppanen <[email protected]>
Date: Sun Apr 3 12:51:12 2011 +0100
Fix merge conflicts
acinclude.m4 | 6 +++---
configure.in | 3 ---
2 files changed, 3 insertions(+), 6 deletions(-)
commit 6641ed81d2d2215f6b0d2aafa30c455eafe00c29
Author: Pieter Hintjens <[email protected]>
Date: Sun Apr 3 10:37:12 2011 +0200
Updated NEWS
NEWS | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
commit 7a5f33ed180303c45b83e224bebaa4d734687fbf
Author: Martin Sustrik <[email protected]>
Date: Sun Apr 3 07:36:02 2011 +0200
Git ignores .gcno files
Signed-off-by: Martin Sustrik <[email protected]>
.gitignore | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
commit 1e3ccf94c3b964ebb5b85c76775489ed73d881d1
Author: Mikko Koppanen <[email protected]>
Date: Sun Apr 3 07:34:14 2011 +0200
Additional gcov changes
Signed-off-by: Mikko Koppanen <[email protected]>
acinclude.m4 | 32 +++++++++++++++++++++-----------
1 files changed, 21 insertions(+), 11 deletions(-)
commit 9014b40901bf87c322f69e656ff77c99e34cf1d1
Author: Mikko Koppanen <[email protected]>
Date: Sat Apr 2 22:49:41 2011 +0200
Added code coverage checking
Signed-off-by: Mikko Koppanen <[email protected]>
acinclude.m4 | 8 ++++----
configure.in | 3 +++
2 files changed, 7 insertions(+), 4 deletions(-)
commit cd299055643ef160e87b7a339cb30aa0bb2eab98
Author: Mikko Koppanen <[email protected]>
Date: Sat Apr 2 22:50:46 2011 +0200
Large rename: AC_ZMQ_ to LIBZMQ_ and ac_zmq_ to libzmq_. Fixes "warning suspicious cache-id"
Signed-off-by: Mikko Koppanen <[email protected]>
acinclude.m4 | 366 +++++++++++++++++++++++++++++++--------------------------
configure.in | 86 +++++++-------
2 files changed, 243 insertions(+), 209 deletions(-)
commit 45f95648b825257f5426263643547a7df9c304b7
Author: Mikko Koppanen <[email protected]>
Date: Sat Apr 2 22:48:52 2011 +0200
Add option to build with system opepgm
Signed-off-by: Mikko Koppanen <[email protected]>
autogen.sh | 6 ++++++
configure.in | 17 +++++++++++++++++
2 files changed, 23 insertions(+), 0 deletions(-)
commit c54e54b1c32c602d9a188d4f2318f72d4f3b21f9
Author: Pieter Hintjens <[email protected]>
Date: Sat Apr 2 20:17:38 2011 +0200
Updated NEWS for patches
NEWS | 28 +++++++++++++++++++++++-----
1 files changed, 23 insertions(+), 5 deletions(-)
commit b4c4648fef62b6aceaad1ab3d47764b9f3c06e47
Author: Martin Sustrik <[email protected]>
Date: Sat Apr 2 19:32:44 2011 +0200
Project location on github changed in README file
Signed-off-by: Martin Sustrik <[email protected]>
README | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
commit 006b72e73d34edda48a477d62042b3b73dfe5166
Author: Pieter Hintjens <[email protected]>
Date: Sat Apr 2 09:22:41 2011 +0200
Fixed memory leak with threads on win32
Signed-off-by: Pieter Hintjens <[email protected]>
src/thread.cpp | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
commit b65071324288ff5b5c1bfa2439d547a11c40b687
Author: Martin Sustrik <[email protected]>
Date: Sat Apr 2 09:50:35 2011 +0200
inproc perf tests now work on Windows
Signed-off-by: Martin Sustrik <[email protected]>
builds/msvc/inproc_lat/inproc_lat.vcproj | 174 ++++++++++++++++++++++++++++++
builds/msvc/inproc_thr/inproc_thr.vcproj | 174 ++++++++++++++++++++++++++++++
builds/msvc/msvc.sln | 40 ++++---
perf/inproc_lat.cpp | 46 ++++++++-
perf/inproc_thr.cpp | 46 ++++++++-
5 files changed, 458 insertions(+), 22 deletions(-)
commit 6da2436ea8944dc8625ccaa005eddc69c5a8942b
Author: Martin Sustrik <[email protected]>
Date: Fri Apr 1 11:55:10 2011 +0200
inproc_lat and inproc_thr added to .gitignore
Signed-off-by: Martin Sustrik <[email protected]>
.gitignore | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
commit e1926d84698cdc2a331123c7d3f6c0d2aa8d8cfd
Author: Martin Sustrik <[email protected]>
Date: Fri Apr 1 11:53:51 2011 +0200
PGM wire format specification improved in zmq_pgm(7)
Signed-off-by: Martin Sustrik <[email protected]>
doc/zmq_pgm.txt | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
commit 1fb5a3ee6e07cdbdef31a5dd1abaf8799a88b1a7
Author: Martin Sustrik <[email protected]>
Date: Thu Mar 31 23:16:14 2011 +0200
Robert G. Jakabosky added to the AUTHORS file
Signed-off-by: Martin Sustrik <[email protected]>
AUTHORS | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
commit 0e528fb7029234f490d77ab7d382d47413f85c4e
Author: Robert G. Jakabosky <[email protected]>
Date: Thu Mar 31 23:14:38 2011 +0200
Adding thread latency/throughput perf. examples.
Signed-off-by: Robert G. Jakabosky <[email protected]>
perf/Makefile.am | 8 ++-
perf/inproc_lat.cpp | 190 +++++++++++++++++++++++++++++++++++++++++++++++
perf/inproc_thr.cpp | 204 +++++++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 401 insertions(+), 1 deletions(-)
commit 51d6e1d47d3a2cf13358b83d312236317a53f435
Author: Pieter Hintjens <[email protected]>
Date: Wed Mar 30 14:45:29 2011 +0200
Udated version for next release
include/zmq.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 5684d43eb3a03cb863f920015c5fa52f73977ec8
Author: Pieter Hintjens <[email protected]>
Date: Wed Mar 30 14:21:58 2011 +0200
Fixed whitespace error
doc/Makefile.am | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 3420eb7304ec05e2d7f36ac6f811abf2d0ba8bff
Author: Pieter Hintjens <[email protected]>
Date: Wed Mar 30 14:09:19 2011 +0200
Updated NEWS for 2.1.4
NEWS | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit e621c48ba04fe5dbe77f416bed185a60273e5be0
Author: Pieter Hintjens <[email protected]>
Date: Mon Mar 28 20:52:22 2011 +0200
Restored HTML man pages output
doc/Makefile.am | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
commit a18d55633378e6949a4dd619ade3bd434ec3614e
Author: Pieter Hintjens <[email protected]>
Date: Sat Mar 26 09:53:06 2011 +0100
Added missing HWP/inproc change to 2.1.1 notes
NEWS | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
commit 20e6dc44164bea5b247225dac8dcbf7630314f72
Merge: 1a8d95d 55d6932
Author: Mikko Koppanen <[email protected]>
Date: Wed Mar 23 14:21:02 2011 +0000
Merge branch 'master' of https://github.com/zeromq/zeromq2-1
commit 1a8d95da9eae484df2c3b6879b3c6f76b48a98cb
Author: Mikko Koppanen <[email protected]>
Date: Wed Mar 23 14:20:57 2011 +0000
Fix make dist
Makefile.am | 7 ++++++-
configure.in | 3 +++
foreign/openpgm/Makefile.am | 4 +++-
3 files changed, 12 insertions(+), 2 deletions(-)
commit 55d6932031da03d1321e728a376a64217ecf0d61
Author: Pieter Hintjens <[email protected]>
Date: Wed Mar 23 11:45:38 2011 +0100
Upgraded OpenPGM to 5.1.115
NEWS | 5 +++++
foreign/openpgm/libpgm-5.1.114~dfsg.tar.gz | Bin 1051807 -> 0 bytes
foreign/openpgm/libpgm-5.1.115~dfsg.tar.gz | Bin 0 -> 1054630 bytes
3 files changed, 5 insertions(+), 0 deletions(-)
commit f392d73332d5642f17a85ffe337c7f45217f4124
Author: Steven McCoy <[email protected]>
Date: Wed Mar 23 14:55:00 2011 +0800
OpenPGM 5.1.115 to fix assertion with messages smaller than an IP header length.
Signed-off-by: Steven McCoy <[email protected]>
configure.in | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit 4c988d321a60279bf324140c539b6e586d5c29d2
Author: Pieter Hintjens <[email protected]>
Date: Tue Mar 22 22:31:30 2011 +0100
Prepared for 2.1.4 release
NEWS | 11 +++++++++++
include/zmq.h | 2 +-
2 files changed, 12 insertions(+), 1 deletions(-)
commit 34b7f54b0fa6e7884a76792633ca66f176d25906
Merge: b10138f 91bdf04
Author: Pieter Hintjens <[email protected]>
Date: Tue Mar 22 22:29:12 2011 +0100
Merge branch 'openpgm-no-artifact' of https://github.com/mkoppanen/zeromq2-1 into mkoppanen-openpgm-no-artifact
commit 91bdf04ac5d70c265efe44ae9462c403ec8a93e7
Author: Mikko Koppanen <[email protected]>
Date: Tue Mar 22 09:21:05 2011 +0000
Make sure that OpenPGM artifacts are not installed during ZeroMQ installation and remove unnecessary OpenPGM build defines
.gitignore | 1 +
Makefile.am | 2 +-
configure.in | 53 +++---------------------------------------
foreign/openpgm/Makefile.am | 6 +++++
4 files changed, 12 insertions(+), 50 deletions(-)
commit b10138f6ec803b9b616c483a7792fb5ed4e9ccc6
Author: Pieter Hintjens <[email protected]>
Date: Mon Mar 21 21:08:23 2011 +0100
Fixed RHAT packaging for removed devices
builds/redhat/zeromq.spec | 8 +-------
1 files changed, 1 insertions(+), 7 deletions(-)
commit 3c0180fbda42d04659268e50241ca75c1668d01e
Author: Pieter Hintjens <[email protected]>
Date: Mon Mar 21 14:05:48 2011 +0100
Fixed error in OpenPGM news
NEWS | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
commit 31d8b7f74daa3f094347876db2774112d80611fe
Author: Pieter Hintjens <[email protected]>
Date: Mon Mar 21 10:08:42 2011 +0100
Fixed 'documentation' in MAINTAINERS
MAINTAINERS | 6 +-----
1 files changed, 1 insertions(+), 5 deletions(-)
commit a4c98d20c29b48d35af3e438e763ee915e63e790
Author: Pieter Hintjens <[email protected]>
Date: Mon Mar 21 10:07:03 2011 +0100
Removed MSVC builds for standalone devices
builds/msvc/Makefile.am | 6 +-
builds/msvc/msvc.sln | 15 --
builds/msvc/zmq_forwarder/zmq_forwarder.vcproj | 176 ------------------------
builds/msvc/zmq_queue/zmq_queue.vcproj | 176 ------------------------
builds/msvc/zmq_streamer/zmq_streamer.vcproj | 176 ------------------------
5 files changed, 1 insertions(+), 548 deletions(-)
commit bcd6ab81fa440287172081b19667f26a202d5f1c
Author: Pieter Hintjens <[email protected]>
Date: Mon Mar 21 09:58:10 2011 +0100
Updated NEWS for v2.1.3
NEWS | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
commit f42399ef8788c0f5367bd22f1e82f7944d7c3e37
Author: Martin Sustrik <[email protected]>
Date: Sun Mar 20 20:52:54 2011 +0100
Message atomicity bug in load-balancer fixed
If the peer getting the message have disconnected in the middle
of multiplart message, the remaining part of the message went
to a different peer. This patch fixes the issue.
Signed-off-by: Martin Sustrik <[email protected]>
NEWS | 5 ++++-
src/lb.cpp | 25 ++++++++++++++++++++++++-
src/lb.hpp | 3 +++
3 files changed, 31 insertions(+), 2 deletions(-)
commit 2294c87d2c670e95595553d3fb7a13264216a540
Author: Pieter Hintjens <[email protected]>
Date: Sun Mar 20 17:27:43 2011 +0100
Fixed README git and man page URIs
README | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
commit 795b9482ba3aa76b994f428f6ec549ac56438110
Author: Pieter Hintjens <[email protected]>
Date: Sun Mar 20 17:17:26 2011 +0100
Removed HTML generation of man pages
doc/Makefile.am | 6 +-----
1 files changed, 1 insertions(+), 5 deletions(-)
commit 2bae7f7dec5468f9102983d218944d7d557ea9a4
Author: Pieter Hintjens <[email protected]>
Date: Sun Mar 20 17:09:27 2011 +0100
Removed stand-alone devices
Makefile.am | 4 +-
NEWS | 4 +
configure.in | 2 -
devices/Makefile.am | 3 -
devices/zmq_forwarder/Makefile.am | 8 --
devices/zmq_forwarder/zmq_forwarder.cpp | 124 -------------------------------
devices/zmq_queue/Makefile.am | 8 --
devices/zmq_queue/zmq_queue.cpp | 123 ------------------------------
devices/zmq_streamer/Makefile.am | 8 --
devices/zmq_streamer/zmq_streamer.cpp | 123 ------------------------------
10 files changed, 6 insertions(+), 401 deletions(-)
commit d736cea05f9eb3e63c0ecb37ea78d4bff81ddfcf
Author: Martin Sustrik <[email protected]>
Date: Sun Mar 20 11:50:51 2011 +0100
Message atomicity problem solved in PUB socket
When new peer connects to a PUB socket while it is in the middle
of sending of multi-part messages, it gets just the remaining
part of the message, i.e. message atomicity is broken.
This patch drops the tail part of the message and starts sending
to the peer only when new message is started.
Signed-off-by: Martin Sustrik <[email protected]>
NEWS | 3 +++
src/dist.cpp | 44 +++++++++++++++++++++++++++++++++++++++-----
src/dist.hpp | 15 +++++++++++++++
3 files changed, 57 insertions(+), 5 deletions(-)
commit 6e3c38ab2d85eaf46ad9e218914e29f9984a54c2
Author: Pieter Hintjens <[email protected]>
Date: Sun Mar 20 10:26:20 2011 +0100
Clarified scope of ZMQ_PAIR sockets
Signed-off-by: Pieter Hintjens <[email protected]>
doc/zmq_socket.txt | 12 ++++++++----
1 files changed, 8 insertions(+), 4 deletions(-)
commit 8402e324296d5d0d8a3734ad67d27e879496d6e0
Author: Mikko Koppanen <[email protected]>
Date: Fri Mar 18 07:56:11 2011 +0000
Updated openpgm to libpgm-5.1.114~dfsg
NEWS | 2 +-
foreign/openpgm/libpgm-5.1.113~dfsg.tar.gz | Bin 473717 -> 0 bytes
foreign/openpgm/libpgm-5.1.114~dfsg.tar.gz | Bin 0 -> 1051807 bytes
3 files changed, 1 insertions(+), 1 deletions(-)
commit 84131c004431520f2f62e0cc45e253c13575e6da
Author: Pieter Hintjens <[email protected]>
Date: Thu Mar 17 11:13:50 2011 +0100
Fixed documentation issues (GH-173)
doc/zmq_setsockopt.txt | 4 ++--
doc/zmq_socket.txt | 8 +++++---
2 files changed, 7 insertions(+), 5 deletions(-)
commit eeefe8fad4f2a2b20c9cc005220722b2af075c69
Author: Martin Sustrik <[email protected]>
Date: Wed Mar 16 13:48:40 2011 +0100
Incorrect errno reported from tcp_listener_t::set_address
Signed-off-by: Martin Sustrik <[email protected]>
src/tcp_listener.cpp | 20 ++++++++++++++++----
1 files changed, 16 insertions(+), 4 deletions(-)
commit ab1fc89b84221407ee93d0f9a87405222d336a60
Author: Steven McCoy <[email protected]>
Date: Thu Mar 17 12:10:58 2011 +0800
Add path support for asciidoc and xmlto.
Signed-off-by: Steven McCoy <[email protected]>
NEWS | 2 +-
configure.in | 5 +++++
doc/Makefile.am | 10 +++++-----
3 files changed, 11 insertions(+), 6 deletions(-)
commit 6f12503c57a47cb491c4bf6281f843b2b04f7cf6
Author: Steven McCoy <[email protected]>
Date: Thu Mar 17 12:09:25 2011 +0800