forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-3.7
17172 lines (12849 loc) · 650 KB
/
ChangeLog-3.7
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
Fri Sep 11 15:54:21 GMT 2015 Peter Oschwald <[email protected]>
commit 47c533b2263ceb104d5563602f1ca3678a11b1e8
Merge pull request #176 from objectcomputing/ipv6_changes
Fix test to call set_address with the proper arguments for IPV6
addre…
Fri Sep 11 15:07:14 GMT 2015 Peter Oschwald <[email protected]>
commit f102558990ea49a9431372d8979da0bb4bc98ad4
* tests/transport/rtps_reliability/rtps_reliability.cpp:
Fix test to call set_address with the proper arguments for IPV6
addresses.
Thu Sep 10 18:46:19 GMT 2015 Peter Oschwald <[email protected]>
commit 21e05eee861a131267bea85bd41bf9da18f14ebd
Merge pull request #175 from objectcomputing/ipv6_changes
Fix issue where locator was being improperly set due to
local_address…
Thu Sep 10 18:09:51 GMT 2015 Peter Oschwald <[email protected]>
commit bef4cc9259d568975e178bb1dda8df0c66b10622
* dds/DCPS/RTPS/Sedp.cpp:
Sedp - Fix issue where locator was being improperly set due to
local_address_string being non empty, but only populated with the
updated port number and no address. Need to detect this scenario
and populate locator with appropriate interfaces.
Thu Sep 10 17:26:49 GMT 2015 Peter Oschwald <[email protected]>
commit 6e9b8043b15cb8fb9cd3719a52352d7224ea8632
* dds/DCPS/transport/rtps_udp/RtpsUdpInst.cpp:
Fix issue where locator was being improperly set due to
local_address_string being non empty, but only populated with the
updated port number and no address. Need to detect this scenario
and populate locator with appropriate interfaces.
Thu Sep 10 16:50:45 GMT 2015 Peter Oschwald <[email protected]>
commit ec675ddda19015430bf48ec8a8d33122d5896932
Merge pull request #174 from objectcomputing/ipv6_changes
Ipv6 changes - fixes for proper type conversions for wchar builds
Thu Sep 10 16:11:49 GMT 2015 Peter Oschwald <[email protected]>
commit 01d451f9a51cf8d4fce735d02d9cf8575604e3d5
Merge branch 'master' into ipv6_changes
Thu Sep 10 16:10:32 GMT 2015 Peter Oschwald <[email protected]>
commit 5cdc4b7de693085666bcffbc9e89ea0d781f5976
* dds/DCPS/transport/rtps_udp/RtpsUdpInst.cpp:
* dds/DCPS/transport/tcp/TcpInst.h:
* dds/DCPS/transport/udp/UdpInst.cpp:
* tests/transport/rtps/subscriber.cpp:
* tests/transport/simple/PubDriver.cpp:
* tests/transport/simple/SubDriver.cpp:
Fix type conversions for wchar builds
Thu Sep 10 13:46:07 GMT 2015 Jeff Schmitz <[email protected]>
commit 84c490f52a015e98e91f18936ad4d79e4ce418e8
Merge pull request #173 from iamtheschmitzer/master
Move include of RtpsDiscovery.h to static guard
Thu Sep 10 13:07:22 GMT 2015 Jeff Schmitz <[email protected]>
commit ab3f6424f10e5b1ca2689b03af3b74e143bc931b
* tests/DCPS/DpShutdown/dpshutdown.cpp:
Restore previous #include for non-static builds.
Thu Sep 10 11:55:03 GMT 2015 Jeff Schmitz <[email protected]>
commit ae37109b253550d3ccbafd6478422248f8cd0f97
* tests/DCPS/DpShutdown/dpshutdown.cpp:
Move include of RtpsDiscovery.h to static guard
Wed Sep 9 19:03:46 GMT 2015 Peter Oschwald <[email protected]>
commit 715da797cfee24f857edb5e81e864f57c0d0417c
Merge pull request #172 from objectcomputing/ipv6_updates
Give preference to IPV6 interfaces when IPV6 enabled
Wed Sep 9 18:44:41 GMT 2015 Adam Mitz <[email protected]>
commit 631b889f79b96d43e135204d708b52bf7d8c9fb5
Merge pull request #171 from
objectcomputing/modeling-transport-config
Updated transport configuration classes to handle local_address
better. Don't allow the string and INET_Addr representations of
the local address to get out of sync.
Wed Sep 9 18:44:03 GMT 2015 Peter Oschwald <[email protected]>
commit 5c36cfdc14bca06b6262e2193cbb5d108417661a
* dds/DCPS/transport/framework/NetworkAddress.cpp:
Give preference to IPV6 interfaces when IPV6 enabled
Wed Sep 9 18:42:14 GMT 2015 Adam Mitz <[email protected]>
commit c2d6661fd44269752a8f8a2d4df0fd911a10b041
* java/dds/OpenDDS_DCPS_jni.cpp:
* java/dds/dcps_java.mpc:
Java bindings: adapt to modified transport config API
Wed Sep 9 16:30:08 GMT 2015 Peter Oschwald <[email protected]>
commit 1683ebdd78b473b4c7bd59a61a760e2b4a83e77b
* dds/DCPS/transport/rtps_udp/RtpsUdpInst.h:
* dds/DCPS/transport/rtps_udp/RtpsUdpTransport.cpp:
* dds/DCPS/transport/tcp/TcpInst.cpp:
* dds/DCPS/transport/tcp/TcpInst.h:
* dds/DCPS/transport/tcp/TcpTransport.cpp:
* dds/DCPS/transport/udp/UdpDataLink.cpp:
* dds/DCPS/transport/udp/UdpInst.cpp:
* dds/DCPS/transport/udp/UdpInst.h:
Provide helper function to set local address port and update the
local address string with new port. Remove last direct accesses
to local_address member variables and use helper functions
Wed Sep 9 16:28:08 GMT 2015 Peter Oschwald <[email protected]>
commit 5ec662540a807f549d07884a0b16ea16eabdf55c
* java/dds/OpenDDS_DCPS_jni.cpp:
Revert change in getter
Wed Sep 9 16:27:38 GMT 2015 Peter Oschwald <[email protected]>
commit 73d65c17a42e585079ff7fbc60870f6383334f3e
* dds/DCPS/InfoRepoDiscovery/InfoRepoDiscovery.mpc:
Add to mpc new dependency on tcp transport library
Wed Sep 9 16:27:16 GMT 2015 Peter Oschwald <[email protected]>
commit 6e447f4d9d629380482dc16167ac0d342f940ad7
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Sedp.h:
Revert changes to Sedp which would create dependency on transport
library
Wed Sep 9 15:13:50 GMT 2015 Adam Mitz <[email protected]>
commit 127e556f43919161df77913db15b77f7d469fe46
* dds/InfoRepo/DCPSInfoRepoServ.cpp:
InfoRepo: allow persistence to work in static builds with no BITs
Tue Sep 8 19:29:50 GMT 2015 Adam Mitz <[email protected]>
commit 8ca47feca71aed213f1eadf2ad91224f4f756a4e
* bin/PerlDDS/Run_Test.pm:
Run_Test.pm: check for TAO orbsvcs executables in Static_*
subdirs too
Wed Sep 9 14:54:36 GMT 2015 Peter Oschwald <[email protected]>
commit 1fbd5054a724aa85da6ecdee2c0b2d465a4a998a
Merge pull request #170 from objectcomputing/ipv6_updates
Do not log errors in helper function, rather log warnings and let
cal…
Tue Sep 8 22:28:52 GMT 2015 Peter Oschwald <[email protected]>
commit 4c7f4242a220cdf0f87339c6d333d614af236e09
* dds/DCPS/transport/rtps_udp/RtpsUdpInst.h:
* dds/DCPS/transport/udp/UdpInst.h:
remove macro where not needed
Tue Sep 8 22:28:39 GMT 2015 Peter Oschwald <[email protected]>
commit 076a8f0a07c3b7bc279b2ff8e7726187d0b3d67f
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Sedp.h:
Avoid top level const
Tue Sep 8 22:06:39 GMT 2015 Peter Oschwald <[email protected]>
commit f8335c0587556c5cce99d4e8598d7643d1f3afbd
* dds/DCPS/InfoRepoDiscovery/InfoRepoDiscovery.cpp:
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Sedp.h:
* dds/DCPS/transport/rtps_udp/RtpsUdpInst.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpInst.h:
* dds/DCPS/transport/rtps_udp/RtpsUdpTransport.cpp:
* dds/DCPS/transport/tcp/TcpConnection.cpp:
* dds/DCPS/transport/tcp/TcpInst.cpp:
* dds/DCPS/transport/tcp/TcpInst.h:
* dds/DCPS/transport/tcp/TcpTransport.cpp:
* dds/DCPS/transport/udp/UdpInst.cpp:
* dds/DCPS/transport/udp/UdpInst.h:
* dds/InfoRepo/DCPSInfo_i.cpp:
* java/dds/OpenDDS_DCPS_jni.cpp:
* tests/DCPS/ConfigFile/ConfigFile.cpp:
* tests/transport/error_handling/main.cpp:
* tests/transport/rtps/subscriber.cpp:
* tests/transport/simple/PubDriver.cpp:
* tests/transport/simple/SubDriver.cpp:
Apply changes to transports: RtpsUdp, Tcp, and some additional to
Udp and tests to keep track of local address string as configured
as private member data and use accessors where needed.
Tue Sep 8 21:52:42 GMT 2015 Peter Oschwald <[email protected]>
commit 09ac7d3e7a7e90064dfaa8224744e09a7beaabde
* tests/transport/rtps/publisher.cpp:
Use ACE_TEXT around localhost string for wchar build comparison
Tue Sep 8 21:45:32 GMT 2015 Peter Oschwald <[email protected]>
commit 48f17dd412a89f7e84ec5250f75e219fe8fe15b0
* tests/transport/rtps/publisher.cpp:
Fix creation of INET with wchar hostname
Tue Sep 8 20:53:58 GMT 2015 Peter Oschwald <[email protected]>
commit e9e3ccc83915f3b53d3860d56506ad27d0c1b0bf
* dds/DCPS/transport/framework/NetworkAddress.cpp:
Fix ACE_ERROR_RETURN call
Tue Sep 8 20:09:04 GMT 2015 Peter Oschwald <[email protected]>
commit 4270cd1a6ccdf0860d016d0964a3eeb3a2c06572
* dds/DCPS/transport/framework/NetworkAddress.cpp:
Do not log errors in helper function, rather log warnings and let
calling code determine how to deal with failures
Tue Sep 8 16:33:19 GMT 2015 Peter Oschwald <[email protected]>
commit fa65169e73805442ed6f78d0c81c934ebcf840c9
Merge branch 'master' into modeling-transport-config
Tue Sep 8 16:30:56 GMT 2015 Peter Oschwald <[email protected]>
commit 7f774f21aa1657f0d66ff30089888023d3430824
Merge pull request #168 from objectcomputing/ipv6_updates
Ipv6 updates
Tue Sep 8 16:30:10 GMT 2015 Jeff Schmitz <[email protected]>
commit fdc90b903b8c9b71e1b8cbe0435ec9806a7dd377
* tools/modeling/plugins/org.opendds.modeling.sdk.model/xsl/traits_cpp.xsl:
Use const char*, not ACE_INET_Addr, for param to local_address
Tue Sep 8 16:16:11 GMT 2015 Jeff Schmitz <[email protected]>
commit 87f0e6c2e77e84d42d51f73743b47ea23bcb40c5
* tools/modeling/plugins/org.opendds.modeling.sdk.model/xsl/mpc.xsl:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/xsl/traits_cpp.xsl:
Call local_address() rather than assign local_address_, use base
all_dcps_transports in the model library
Tue Sep 8 15:57:22 GMT 2015 Peter Oschwald <[email protected]>
commit 4453032692d90dbee5fa5455db044fb772acc0aa
* dds/DCPS/transport/framework/NetworkAddress.cpp:
Fix socket name in refactored method
Tue Sep 8 15:00:28 GMT 2015 Peter Oschwald <[email protected]>
commit f8ad8031df1a22180e8abbd4c2b810d3066c65b3
* dds/DCPS/transport/framework/NetworkAddress.cpp:
Fix variable name in refactored method
Tue Sep 8 14:13:52 GMT 2015 Adam Mitz <[email protected]>
commit 973220460c89bdd5a6bd5268b5bcbd2e8e15dd0c
* dds/DCPS/transport/udp/UdpDataLink.cpp:
* dds/DCPS/transport/udp/UdpInst.h:
* dds/DCPS/transport/udp/UdpTransport.cpp:
UDP transport:
- keep track of local address string as configured as private
member data
- apply Windows-specific socket ioctl for connection reset
- improved debug logging
Tue Sep 8 14:11:03 GMT 2015 Adam Mitz <[email protected]>
commit 4c66cb03a84884d4ce8a4c50d2769df18e8d381f
* tools/modeling/tests/UDP/UDP.codegen:
Modeling tests: no need for extra "s in XML
Tue Sep 8 13:14:46 GMT 2015 Jeff Schmitz <[email protected]>
commit 38f28670e4d187d66f3f4c0e1b5663540dd423b0
Merge pull request #169 from iamtheschmitzer/master
New base to include all transports
Fri Sep 4 21:42:09 GMT 2015 Jeff Schmitz <[email protected]>
commit f5f1164bda9cf75e589d072c94e0ff58c3898fbe
* MPC/config/all_dcps_transports.mpb:
* MPC/config/dcps_transports_for_test.mpb:
New base to include all transports
Fri Sep 4 21:06:51 GMT 2015 Peter Oschwald <[email protected]>
commit 4e83ed2c0098f3cd3eac160ef1074c913f153b53
Merge branch 'ipv6_updates' of github.com:objectcomputing/OpenDDS
into ipv6_updates
Fri Sep 4 21:06:04 GMT 2015 Peter Oschwald <[email protected]>
commit fa79b7630b12067d04baf13d289cc7fb3933cf41
* dds/DCPS/RTPS/Spdp.cpp:
* dds/DCPS/transport/framework/NetworkAddress.cpp:
* dds/DCPS/transport/framework/NetworkAddress.h:
* dds/DCPS/transport/rtps_udp/RtpsUdpTransport.cpp:
* dds/DCPS/transport/udp/UdpDataLink.cpp:
* tests/transport/rtps/publisher.cpp:
* tests/transport/rtps_reliability/rtps_reliability.cpp:
Refactor open_dual_stack_socket into one function to open the
appropriate type of socket for the configuration. Fix issues with
IPV6 builds in the transport tests to use correct sockets and
address types.
Fri Sep 4 14:16:53 GMT 2015 Peter Oschwald <[email protected]>
commit eb20b6e8207f58680a00e6eeb4a2c6ac8de9e282
Merge pull request #167 from objectcomputing/ipv6_updates
Detect linux platforms on older versions of ACE which don't
define AC…
Fri Sep 4 14:15:50 GMT 2015 Peter Oschwald <[email protected]>
commit f561ddb526fdda687dac93828e10778da21a0522
* dds/DCPS/transport/framework/NetworkAddress.cpp:
Detect linux platforms on older versions of ACE which don't
define ACE_LINUX
Thu Sep 3 21:37:51 GMT 2015 Adam Mitz <[email protected]>
commit 57fa90619a930e66956590d7e6604ab81462f138
* README:
README: updated TAO version numbers.
Thu Sep 3 21:18:35 GMT 2015 Adam Mitz <[email protected]>
commit 45883f2b49677af074c815b673ec6327371b5615
Merge pull request #166 from mitza-oci/master
Fix remaining warnings on MacOSX/clang.
Thu Sep 3 21:18:28 GMT 2015 Adam Mitz <[email protected]>
commit 761906cdf174c76876f08648a1e80e9b0a3277cd
Merge pull request #165 from iamtheschmitzer/master
Documentation changes for 3.7 release
Thu Sep 3 20:38:12 GMT 2015 Adam Mitz <[email protected]>
commit 75e7d79b872102b4a70542c0852ddb7d334c56ca
* dds/DCPS/transport/shmem/ShmemTransport.cpp:
* tests/DCPS/UnitTests/DisjointSequence.cpp:
Fix remaining warnings on MacOSX/clang.
Thu Sep 3 20:38:03 GMT 2015 Jeff Schmitz <[email protected]>
commit ec4c6982a74218bcd9f4669353e45dd6a14b11d4
Merge branch 'master' of github.com:objectcomputing/OpenDDS
Conflicts:
NEWS
Thu Sep 3 19:31:09 GMT 2015 Peter Oschwald <[email protected]>
commit e79f67f6c14ae7504377eff0439339428ffcb55f
Merge pull request #164 from objectcomputing/ipv6_updates
Ipv6 updates
Thu Sep 3 19:23:06 GMT 2015 Jeff Schmitz <[email protected]>
commit 5573b8a716b2d1e6f60f1a94201369bf695d8980
* NEWS:
* README:
add 1.4 DDS spec references
Thu Sep 3 18:55:07 GMT 2015 Peter Oschwald <[email protected]>
commit aa2eac545ba7ef94661a56fe86939c52271f898b
* dds/DCPS/transport/framework/NetworkAddress.cpp:
Fix ttl parameter type/size for linux
Thu Sep 3 18:25:46 GMT 2015 Peter Oschwald <[email protected]>
commit 7a25710fff9cee768ab4ad5d40ab05a6ca299a13
* dds/DCPS/transport/framework/NetworkAddress.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.cpp:
* dds/DCPS/transport/tcp/TcpAcceptor.h:
Fix typo and format specifier
Thu Sep 3 18:19:21 GMT 2015 Adam Mitz <[email protected]>
commit 12f39b2299b01186f245bc551d1de46bc47475a6
Merge pull request #163 from mitza-oci/master
Visual C++ warning fixes, another round.
Thu Sep 3 17:34:15 GMT 2015 Adam Mitz <[email protected]>
commit 3ee11084962654aaf5e3f6066291d63f4e0a21b6
* performance-tests/Bench/src/Options.cpp:
* performance-tests/DCPS/TCPListenerTest/DataReaderListener.cpp:
* tests/DCPS/FooTest3_0/PubDriver.cpp:
* tests/DCPS/KeyTest/md5_test.cpp:
* tests/DCPS/MultiRepoTest/TestConfig.cpp:
* tests/DCPS/MultiRepoTest/TestMonitor.cpp:
* tests/DCPS/SharedTransport/TestCase.cpp:
* tests/DCPS/StaticDiscovery/StaticDiscoveryTest.cpp:
* tests/DCPS/SubscriberCycle/ParticipantTask.cpp:
* tests/DCPS/SubscriberCycle/Publisher.cpp:
* tests/DCPS/Thrasher/ParticipantTask.cpp:
* tests/DCPS/Thrasher/Publisher.cpp:
* tests/DCPS/unit/Main.cpp:
Visual C++ warning fixes, another round.
Thu Sep 3 17:27:56 GMT 2015 Jeff Schmitz <[email protected]>
commit 18d6bccac1ffa40ddd3d72684838bc45659c4860
* README:
* docs/design/RTPS:
remove SP# for VC>10, format->formal
Thu Sep 3 17:02:12 GMT 2015 Adam Mitz <[email protected]>
commit 5a076d8508b715d2e5723c87db17f6d7eabb0e1a
* java/tests/transport_config/TransportConfigTest.java:
Java transport_config test: updated for new parameter type of
setTimeToLive
Thu Sep 3 16:20:01 GMT 2015 Jeff Schmitz <[email protected]>
commit a92ae6bab213dfb74993f5994e7946341f1faa30
* INSTALL:
* README:
* java/INSTALL:
updates for 3.7 release
Thu Sep 3 15:59:55 GMT 2015 Adam Mitz <[email protected]>
commit db6d943716c630aba31ef2bdcc3ea211c6fa227b
Merge remote-tracking branch 'upstream/master'
Thu Sep 3 15:59:15 GMT 2015 Jeff Schmitz <[email protected]>
commit 28fc68974f55d98284e594cf9d334e9957f93d63
Merge pull request #161 from iamtheschmitzer/master
Clang warnings
Thu Sep 3 15:53:21 GMT 2015 Adam Mitz <[email protected]>
commit 6c667da0663a996d01dc56ae2305988e251090b8
* NEWS:
NEWS updates for 3.7 release
Thu Sep 3 14:51:03 GMT 2015 Jeff Schmitz <[email protected]>
commit 52686ff597464853a141f95e569b6c5333292496
* tests/DCPS/FooTest3_2/Writer.cpp:
* tests/DCPS/FooTest3_2/Writer.h:
fix compile error
Thu Sep 3 13:24:39 GMT 2015 Jeff Schmitz <[email protected]>
commit c3d79e8387000d8f46194d6926e1eea2ee685da1
* dds/monitor/SPMonitorImpl.cpp:
* tests/DCPS/Reconnect/DataWriterListener.cpp:
fuzz
Wed Sep 2 23:33:55 GMT 2015 Adam Mitz <[email protected]>
commit 44aec33a5aa81274535cf428705bfa409b1837b0
Merge pull request #162 from mitza-oci/master
Fixed warning due to implicit noexcept on vc14.
Wed Sep 2 21:53:35 GMT 2015 Adam Mitz <[email protected]>
commit 7c47635fc4ae114b89504be8d5cef4d49b497d7f
* tools/modeling/codegen/model/Sync.cpp:
* tools/modeling/codegen/model/Sync.h:
Fixed warning due to implicit noexcept on vc14.
Wed Sep 2 21:40:13 GMT 2015 iamtheschmitzer <[email protected]>
commit 471bf69b1292d4277c1ad46412eaffaccc189532
* dds/DCPS/Service_Participant.cpp:
* dds/DCPS/Service_Participant.h:
* dds/DCPS/yard/yard_parser.hpp:
* dds/monitor/SPMonitorImpl.cpp:
* dds/monitor/SPMonitorImpl.h:
* dds/monitor/TransportMonitorImpl.cpp:
* dds/monitor/TransportMonitorImpl.h:
* performance-tests/DCPS/SimpleLatency/PubListener.cpp:
* performance-tests/DCPS/SimpleLatency/raw_tcp/publisher/TcpPublisher.cpp:
* performance-tests/DCPS/SimpleLatency/raw_tcp/publisher/TcpPublisher.h:
* performance-tests/DCPS/SimpleLatency/raw_tcp/publisher/TestDriver.cpp:
* performance-tests/DCPS/SimpleLatency/raw_tcp/publisher/TestDriver.h:
* tests/DCPS/Deadline/subscriber.cpp:
* tests/DCPS/FooTest3_0/SubDriver.cpp:
* tests/DCPS/FooTest3_0/SubDriver.h:
* tests/DCPS/FooTest3_2/Writer.cpp:
* tests/DCPS/FooTest3_2/Writer.h:
* tests/DCPS/FooTest4/Reader.cpp:
* tests/DCPS/FooTest4/Writer.cpp:
* tests/DCPS/FooTest4/Writer.h:
* tests/DCPS/GroupPresentation/DataReaderListener.cpp:
* tests/DCPS/GroupPresentation/DataReaderListener.h:
* tests/DCPS/ManyToMany/Writer.cpp:
* tests/DCPS/ManyTopicMultiProcess/Writer.h:
* tests/DCPS/PubScalability/Writer.cpp:
* tests/DCPS/PubScalability/Writer.h:
* tests/DCPS/Reconnect/DataWriterListener.cpp:
* tests/DCPS/Reconnect/DataWriterListener.h:
* tests/DCPS/Rejects/subscriber.cpp:
* tests/DCPS/SetQosDeadline/Writer.cpp:
* tests/DCPS/SetQosDeadline/Writer.h:
* tests/DCPS/SetQosPartition/Writer.cpp:
* tests/DCPS/SetQosPartition/Writer.h:
* tests/DCPS/Thrasher/ParticipantTask.cpp:
* tests/DCPS/Thrasher/ParticipantTask.h:
* tests/DCPS/UnitTests/DisjointSequence.cpp:
* tests/DCPS/UnitTests/SequenceNumber.cpp:
* tests/DCPS/WriteDataContainer/WriteDataContainerTest.cpp:
More clang warnings
Wed Sep 2 21:39:55 GMT 2015 Adam Mitz <[email protected]>
commit 2bf67312a10ec77287b6e63847a0fddfd1598a72
Merge pull request #160 from mitza-oci/master
Warnings fixes for SunCC.
Wed Sep 2 21:01:40 GMT 2015 Adam Mitz <[email protected]>
commit 7dc26bf93fd5fc6d6e931f06ac92f0e4545dc820
* dds/DCPS/MemoryPool.cpp:
* dds/DCPS/MemoryPool.h:
* dds/DCPS/MultiTopicDataReaderBase.h:
* dds/DCPS/TypeSupportImpl.h:
* dds/idl/be_global.h:
* dds/idl/langmap_generator.cpp:
* tests/DCPS/DestinationOrder/TestCase.cpp:
* tests/DCPS/DestinationOrder/TestCase.h:
* tests/DCPS/TestFramework/TestFramework.h:
* tests/FACE/Unit/MemoryPoolTest.cpp:
Warnings fixes for SunCC.
Wed Sep 2 19:59:10 GMT 2015 Adam Mitz <[email protected]>
commit 113a311d937fff906a8550f0515da4c1dca47047
Merge pull request #159 from mitza-oci/master
Warnings fixes for Visual C++.
Wed Sep 2 19:14:02 GMT 2015 iamtheschmitzer <[email protected]>
commit c49fe793699151b6fefc15fe8875f482fee649d2
* dds/DCPS/Service_Participant.cpp:
* dds/DCPS/transport/framework/PoolSynch.h:
* dds/DCPS/transport/framework/PoolSynch.inl:
* dds/DCPS/transport/framework/PoolSynchStrategy.h:
* dds/DCPS/transport/framework/PoolSynchStrategy.inl:
* dds/DCPS/transport/framework/TransportControlElement.cpp:
* dds/DCPS/transport/framework/TransportControlElement.h:
* performance-tests/DCPS/MulticastListenerTest/Writer.cpp:
* performance-tests/DCPS/MulticastListenerTest/Writer.h:
* performance-tests/DCPS/SimpleE2ETest/Writer.cpp:
* performance-tests/DCPS/SimpleE2ETest/Writer.h:
* performance-tests/DCPS/SimpleLatency/PubListener.cpp:
* performance-tests/DCPS/SimpleLatency/PubListener.h:
* performance-tests/DCPS/TCPListenerTest/Writer.cpp:
* performance-tests/DCPS/TCPListenerTest/Writer.h:
* performance-tests/DCPS/UDPListenerTest/Writer.cpp:
* performance-tests/DCPS/UDPListenerTest/Writer.h:
* performance-tests/DCPS/UDPNoKeyTest/Writer.cpp:
* performance-tests/DCPS/UDPNoKeyTest/Writer.h:
* tests/FACE/CallbackAndReceive/Subscriber/Subscriber.cpp:
* tests/FACE/Header/Subscriber/Subscriber.cpp:
* tests/FACE/Partition/Publisher/Publisher.cpp:
* tests/FACE/Partition/Subscriber/Subscriber.cpp:
warnings on clang
Wed Sep 2 16:17:46 GMT 2015 Adam Mitz <[email protected]>
commit 7c7554b6fcf0ccf4501397704e2d38d7375dc71e
* MPC/config/dds_vc_warnings.mpb:
* dds/DCPS/DdsDcps_pch.h:
* dds/DCPS/MemoryPool.cpp:
* dds/DCPS/MemoryPool.h:
* dds/DCPS/QOS_XML_Handler/QOS_DataWriter_T.cpp:
* dds/DCPS/QOS_XML_Handler/QOS_DwDrTp_Base_T.cpp:
* dds/DCPS/QOS_XML_Handler/QOS_DwTp_Base_T.cpp:
* dds/DCPS/QOS_XML_Handler/QOS_PubSub_T.cpp:
* dds/DCPS/RTPS/RtpsDiscovery.cpp:
* dds/DCPS/RTPS/RtpsDiscovery.h:
* dds/DCPS/transport/framework/TransportConfig.cpp:
* dds/DCPS/transport/tcp/TcpConnection.cpp:
* dds/InfoRepo/InfoRepoMulticastResponder.cpp:
* examples/DCPS/DistributedContent/ApplicationLevel.cpp:
* performance-tests/DCPS/InfoRepo_population/publisher.cpp:
* performance-tests/DCPS/InfoRepo_population/subscriber.cpp:
* performance-tests/DCPS/SimpleLatency/raw_tcp/publisher/TcpPublisher.cpp:
* performance-tests/DCPS/SimpleLatency/raw_tcp/subscriber/TestDriver.cpp:
* performance-tests/DCPS/Sync/SyncServer_i.cpp:
* performance-tests/DCPS/TCPProfilingTest/raw_tcp/subscriber/TcpSubscriber.cpp:
* performance-tests/DCPS/TCPProfilingTest/raw_tcp/subscriber/TcpSubscriber.h:
* performance-tests/DCPS/TCPProfilingTest/raw_tcp/subscriber/TestStats.h:
* tests/DCPS/Serializer_wstring/Writer.cpp:
* tests/FACE/Unit/FreeIndexTest.cpp:
* tests/FACE/Unit/MemoryPoolTest.cpp:
* tools/excelRTD/RTDDataThread.cpp:
* tools/excelRTD/RTDServer.cpp:
* tools/excelRTD/RTDServerDLL.cpp:
* tools/modeling/codegen/model/Config.cpp:
Warnings fixes for Visual C++.
Wed Sep 2 15:28:45 GMT 2015 Peter Oschwald <[email protected]>
commit cf6cd504edba619109b0140e4a9a13ee669ca785
Merge pull request #158 from objectcomputing/ipv6_updates
Bug and compilation error fixes.
Wed Sep 2 15:25:39 GMT 2015 Peter Oschwald <[email protected]>
commit c42690dc45ad47225028dc5e7faca27e0c5aa96e
* dds/DCPS/transport/framework/NetworkAddress.cpp:
* java/dds/OpenDDS/DCPS/transport/MulticastInst.java:
Bug and compilation error fixes.
Wed Sep 2 15:13:45 GMT 2015 Adam Mitz <[email protected]>
commit 5f81b92ac101bb4d7ea1e3fcc714977d94c47628
Merge remote-tracking branch 'upstream/master'
Wed Sep 2 15:12:49 GMT 2015 Jeff Schmitz <[email protected]>
commit dfd58e360f40452434da0a6f41353d53e246a811
Merge pull request #156 from iamtheschmitzer/master
gitrelease changes for release
Wed Sep 2 15:12:42 GMT 2015 Peter Oschwald <[email protected]>
commit da54c6f05bdf6d2fa7d4bc1683b93f7354c67fbf
Merge pull request #157 from objectcomputing/ipv6_updates
Fix for wchar builds
Wed Sep 2 15:10:50 GMT 2015 Peter Oschwald <[email protected]>
commit edc6a72151fa1eea04a9307c00665473d9f06874
* dds/DCPS/transport/rtps_udp/RtpsUdpInst.cpp:
* dds/DCPS/transport/udp/UdpInst.cpp:
Fix for wchar builds
Wed Sep 2 14:31:25 GMT 2015 Adam Mitz <[email protected]>
commit 220cd948e3046c05622d5b0ee0b03793ae0f3ba7
* configure:
Configure script: switch back to safety base for this release.
Support for extended profile will be in a future release.
Tue Sep 1 22:48:08 GMT 2015 Peter Oschwald <[email protected]>
commit 343caa37ecb132ef36bd1c2382b00a8241818130
Merge pull request #146 from objectcomputing/ipv6_updates
Fix issues with IPV6 enabled builds on Windows.
Tue Sep 1 22:33:34 GMT 2015 Adam Mitz <[email protected]>
commit 0dd47a78d3de969ccfb1b58f13df6db67349337d
Merge pull request #155 from mitza-oci/master
Configure script and docs updates for 3.7 release
Tue Sep 1 22:28:26 GMT 2015 Adam Mitz <[email protected]>
commit 2bf23b35214aab992a5357d03f2b5abc91b951d4
* configure:
Configure script: updated usage message.
Tue Sep 1 22:29:17 GMT 2015 Adam Mitz <[email protected]>
commit 12f646069ac0a4982b4a43659eedb27c636efec1
* java/dds/dcps_java.mpc:
Updated dependencies for java build to account for new core idl
files.
Tue Sep 1 22:08:07 GMT 2015 Peter Oschwald <[email protected]>
commit d774e8bd85b230603eb16e31a88e39f59e96d624
* dds/DCPS/transport/framework/NetworkAddress.cpp:
* dds/DCPS/transport/framework/NetworkAddress.h:
* dds/DCPS/transport/rtps_udp/RtpsUdpInst.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpTransport.cpp:
* dds/DCPS/transport/udp/UdpDataLink.cpp:
Minor changes to style
Tue Sep 1 21:59:38 GMT 2015 Adam Mitz <[email protected]>
commit 52ddb70d967a6b5ef1846096bb896ba8a8ac3ec3
* configure:
Configure script: use FACE safety-extended for safety profile ACE
config
Tue Sep 1 21:38:02 GMT 2015 Peter Oschwald <[email protected]>
commit 7cb07e4f69cd4a428411132b3a39dd04322fca84
* dds/DCPS/transport/framework/NetworkAddress.cpp:
Remove C-style cast in preference of static cast
Tue Sep 1 21:17:30 GMT 2015 Jeff Schmitz <[email protected]>
commit d95da871d6e20263122f56c0b5a68144a06dffc8
* tools/scripts/gitrelease.pl:
format date, add footer to changelog
Tue Sep 1 20:52:58 GMT 2015 Adam Mitz <[email protected]>
commit cb8e44b16c11a3c5e9f1d1a4f82dd6bd795cd12f
* configure:
Configure script: check for boost version, quote args in setenv
comment.
Tue Sep 1 20:17:33 GMT 2015 Jeff Schmitz <[email protected]>
commit 4a3e40b1153561c66e2bef951acbca28e3d72ea2
* tools/scripts/gitrelease.pl:
change snuck into last commit
Tue Sep 1 20:14:55 GMT 2015 Jeff Schmitz <[email protected]>
commit aa18b11e056acce2051a35c4d553064465128d6b
* tools/scripts/gitrelease.pl:
change to --name-status to pick up move and copy
Tue Sep 1 20:10:58 GMT 2015 Peter Oschwald <[email protected]>
commit 83091e07154cee6905a2c74935b7cb79a9ee313f
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Spdp.cpp:
* dds/DCPS/transport/framework/NetworkAddress.cpp:
* dds/DCPS/transport/multicast/MulticastInst.cpp:
Some minor changes predominantly addressing style
Tue Sep 1 19:40:16 GMT 2015 Jeff Schmitz <[email protected]>
commit 74e8610ae50d4c8bfcf9062df57a8167a4e20338
* tools/scripts/gitrelease.pl:
Add colon after filename, commit hash to changelog
Tue Sep 1 19:24:57 GMT 2015 Jeff Schmitz <[email protected]>
commit 8fca9fa4d9824d4ec0098f78ca233e7ad947e127
* tools/scripts/gitrelease.pl:
don't indent blank lines in changelog
Tue Sep 1 17:51:50 GMT 2015 Peter Oschwald <[email protected]>
commit 9546068f6e47ea3980e7a220e08ce6a842606d6e
* dds/DCPS/RTPS/BaseMessageUtils.h:
* dds/DCPS/RTPS/ParameterListConverter.h:
Use bool type in default. Remove unncessary ACE_UNUSED_ARG lines
and use proper inverse logic for ACE_UNUSED_ARG line
Tue Sep 1 16:59:32 GMT 2015 Adam Mitz <[email protected]>
commit 34ab19c6d133a8db4b1d4c5d9dec8207f6ece064
* MPC/config/qt4_settings.mpb:
* examples/DCPS/ishapes/ishapes.mpc:
* tools/excelRTD/ExcelRTD.mpc:
* tools/monitor/Monitor.mpc:
Use a new base project to configure Qt4 library names on MSVC.
Tue Sep 1 16:14:48 GMT 2015 Peter Oschwald <[email protected]>
commit ef661369bd33d92836757f484c7435e4d1384b0d
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Sedp.h:
* dds/DCPS/transport/rtps_udp/RtpsUdpTransport.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpTransport.h:
Factor out logic to determine if ipv4 addresses should be mapped
to ipv6.
Mon Aug 31 21:35:29 GMT 2015 Adam Mitz <[email protected]>
commit 068b8ac97cdc045904d32dccb8064042a6c1c2df
Merge remote-tracking branch 'upstream/master'
Mon Aug 31 21:32:12 GMT 2015 Adam Mitz <[email protected]>
commit 4a900e7fba1f0b6dac5be531a5f0fb349b44f027
* configure:
Configure script updates
Improved handling of 3rdparty/optional dependencies, attempt to
automatically
configure as much as possible and default to /usr on platforms
that have one.
Mon Aug 31 21:31:40 GMT 2015 Adam Mitz <[email protected]>
commit 984caa7d7734785c2247c923c1fe5ac940b4d0ae
* NEWS:
NEWS updates for 3.7 release
Mon Aug 31 20:55:22 GMT 2015 Jeff Schmitz <[email protected]>
commit 24715ef5c10586e808d167610be12330665cdcdc
Merge branch 'master' of github.com:iamtheschmitzer/OpenDDS
Mon Aug 31 20:40:11 GMT 2015 Jeff Schmitz <[email protected]>
commit 99e4dc66ef0a08960acf6823002d6511e8404458
* tools/scripts/gitrelease.pl:
make work with remote
Mon Aug 31 19:38:52 GMT 2015 Peter Oschwald <[email protected]>
commit 52f41b6c33644f5bec9742226f2257e33d8ec8ff
* dds/DCPS/RTPS/Spdp.cpp:
discovered participant data does not use map argument, remove.
Mon Aug 31 19:34:20 GMT 2015 Peter Oschwald <[email protected]>
commit ec358191731991b8551460b771b99e10f87ccc08
* dds/DCPS/transport/framework/NetworkAddress.cpp:
Fix typo.
Mon Aug 31 19:32:09 GMT 2015 Peter Oschwald <[email protected]>
commit 07db52384d41f25862af0ec19da2af746eafefb4
* dds/DCPS/RTPS/BaseMessageUtils.h:
* dds/DCPS/RTPS/ParameterListConverter.cpp:
* dds/DCPS/RTPS/ParameterListConverter.h:
* dds/DCPS/transport/framework/NetworkAddress.cpp:
Fix unused map argument compiler warning
Mon Aug 31 18:33:08 GMT 2015 Peter Oschwald <[email protected]>
commit 9932a22f200b7800b858463781974bb7720e720d
* dds/DCPS/RTPS/BaseMessageUtils.h:
Fix unused arg compiler warning.
Mon Aug 31 18:22:15 GMT 2015 Peter Oschwald <[email protected]>
commit eb44bbd5370ba49cfe3ea1bb6542e4afcd6758b6
* dds/DCPS/RTPS/BaseMessageUtils.h:
* dds/DCPS/RTPS/ParameterListConverter.cpp:
* dds/DCPS/RTPS/ParameterListConverter.h:
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Spdp.cpp:
* dds/DCPS/transport/framework/NetworkAddress.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpTransport.cpp:
* dds/DCPS/transport/udp/UdpDataLink.cpp:
Determine when to use a dual socket based on the configured local
address. Use the configuration of the socket (and configured
local address) to determine whether IPV4 locators should have
their IPV4 addresses mapped to IPV6 for use with a dual stack
socket. Only set IPV6_V6ONLY option on a dual stack socket where
determined to be applicable.
Mon Aug 31 18:05:12 GMT 2015 Peter Oschwald <[email protected]>
commit ad61d0141de2901dd38252411d15d0cb64fd0906
* tests/DCPS/WaitForAck/Writer.cpp:
Allow publication slightly more time to shutdown.
Mon Aug 31 14:54:57 GMT 2015 Jeff Schmitz <[email protected]>
commit c1b3cc47c8ebfd9ee33c0a8b319fa66006d9018d
Merge pull request #154 from iamtheschmitzer/master
Fix warnings, including checked iterator
Mon Aug 31 14:05:05 GMT 2015 Jeff Schmitz <[email protected]>
commit c2c6f0e1e4eb2d4a496eef4d0f3fd217281be0d1
* dds/DCPS/DataDurabilityCache.cpp:
* tests/DCPS/StringKey/Writer.cpp:
Fix warnings
Fri Aug 28 21:52:01 GMT 2015 Adam Mitz <[email protected]>
commit d113ad89872834a5816cef41e120e79dfcc8fb72
* configure:
configure script changes:
- safety-enabled ACE+TAO is no longer a separate download
location.
- always run MPC, don't depend on packaged make/project files.
Fri Aug 28 21:51:04 GMT 2015 Adam Mitz <[email protected]>
commit 839970a52afc55c7f86db5df21c1b39f3de7597a
* docs/design/RTPS:
Updated RTPS notes to match current implementation.
Fri Aug 28 20:53:02 GMT 2015 iamtheschmitzer <[email protected]>
commit c18a3feb5d214a369840ef1d6da2615e233a4f8b
Merge branch 'master' of
https://github.com/iamtheschmitzer/OpenDDS
Fri Aug 28 20:51:15 GMT 2015 iamtheschmitzer <[email protected]>
commit fbe89fe524dae53996d9f8915ca3f0d70e870918