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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097
|
Mon 31 Mar 11:53:25 BST 2025
============================
- This is omniORB 4.3.3.
README.FIRST.txt
ReleaseNotes.txt
THIS_IS_OMNIORB_4_3_2
THIS_IS_OMNIORB_4_3_3
configure.ac
configure
contrib/RPMs/omniORB.spec
contrib/RPMs/omniORB_new.spec
include/omniORB4/acconfig_pre.h.in
mk/version.mk
Fri 20 Dec 11:40:29 GMT 2024
============================
- Safer make -j handling.
mk/beforeauto.mk.in
Mon 4 Nov 09:57:23 GMT 2024
============================
- Detach modules if ORB_init throws an exception, so it can safely be
called again.
src/lib/omniORB/orbcore/corbaOrb.cc
src/lib/omniORB/orbcore/http/httpTransportImpl.cc
src/lib/omniORB/orbcore/ssl/sslTransportImpl.cc
Mon 28 Oct 11:58:03 GMT 2024
============================
- Use modern OpenSSL functions for httpCrypto; add example.
src/examples/http_echo/README
src/examples/http_echo/crypto_client_priv.pem
src/examples/http_echo/crypto_client_pub.pem
src/examples/http_echo/crypto_server_priv.pem
src/examples/http_echo/crypto_server_pub.pem
src/examples/http_echo/dir.mk
src/examples/http_echo/eg2_clt.cc
src/examples/http_echo/eg2_crypto_clt.cc
src/examples/http_echo/eg2_crypto_impl.cc
src/examples/http_echo/eg2_impl.cc
src/lib/omniORB/httpcrypto/httpCrypto.cc
Sun 20 Oct 15:26:28 BST 2024
============================
- Use listen backlog parameter in Unix domain socket transport.
src/lib/omniORB/orbcore/unix/unixEndpoint.cc
Fri 4 Oct 16:15:13 BST 2024
============================
- Avoid OpenSSL deprecation warnings.
src/lib/omniORB/httpcrypto/httpCrypto.cc
src/lib/omniORB/orbcore/http/httpConnection.cc
src/lib/omniORB/orbcore/ssl/sslConnection.cc
Tue 14 May 09:50:11 BST 2024
============================
- Only check strand clients if there is a strand.
src/lib/omniORB/orbcore/giopRope.cc
Sat 4 May 18:18:21 BST 2024
============================
- Proper management of proxy peerdetails object.
src/lib/omniORB/orbcore/http/httpConnection.cc
src/lib/omniORB/orbcore/http/httpConnection.h
Sat 4 May 16:41:37 BST 2024
============================
- Avoid pointless warnings from omkdepend; properly handle Windows
paths with spaces.
src/tool/omkdepend/cppsetup.c
src/tool/omkdepend/gnuwin32.c
src/tool/omkdepend/main.c
Fri 3 May 12:12:02 BST 2024
============================
- Ensure errno is 0 before converting integer values.
src/lib/omniORB/orbcore/orbOptions.cc
Fri 3 May 12:05:34 BST 2024
============================
- New httpContext::set_proxy_auth function.
include/omniORB4/httpContext.h
Mon 8 Apr 10:34:44 BST 2024
============================
- Relax validation of configuration file numbers, to allow comments at
the end of line.
src/lib/omniORB/orbcore/orbOptions.cc
Fri 5 Apr 14:17:53 BST 2024
============================
- Avoid concurrent use of SSL object.
src/lib/omniORB/orbcore/giopBiDir.cc
src/lib/omniORB/orbcore/http/httpActive.cc
src/lib/omniORB/orbcore/http/httpAddress.cc
src/lib/omniORB/orbcore/http/httpConnection.cc
src/lib/omniORB/orbcore/http/httpConnection.h
src/lib/omniORB/orbcore/http/httpEndpoint.cc
src/lib/omniORB/orbcore/ssl/sslActive.cc
src/lib/omniORB/orbcore/ssl/sslAddress.cc
src/lib/omniORB/orbcore/ssl/sslConnection.cc
src/lib/omniORB/orbcore/ssl/sslConnection.h
src/lib/omniORB/orbcore/ssl/sslEndpoint.cc
Sat 16 Mar 20:49:51 GMT 2024
============================
- Ensure there are no other concurrent clients using a connection when
clearing resolved addresses.
src/lib/omniORB/orbcore/giopRope.cc
Fri 16 Feb 20:38:34 GMT 2024
============================
- Fix Python module suffix. Thanks Glen Walker.
mk/python.mk
Fri 16 Feb 20:28:25 GMT 2024
============================
- Cast to avoid compile error on 32-bit VC++. Thanks Daniel Krügler.
src/lib/omniORB/orbcore/http/httpContext.cc
Fri 26 Jan 09:43:02 GMT 2024
============================
- Set library compatibility on MacOS. Revise make flags filter to
allow -j in more cases.
mk/beforeauto.mk.in
src/lib/omnithread/dir.mk
Mon 15 Jan 14:02:04 GMT 2024
============================
- This is omniORB 4.3.2.
README.FIRST.txt
ReleaseNotes.txt
THIS_IS_OMNIORB_4_3_1
THIS_IS_OMNIORB_4_3_2
configure.ac
configure
contrib/RPMs/omniORB.spec
contrib/RPMs/omniORB_new.spec
mk/version.mk
Mon 15 Jan 13:38:25 GMT 2024
============================
- Avoid errors with invalid GIOP message size fields.
src/lib/omniORB/orbcore/giopImpl12.cc
src/lib/omniORB/orbcore/giopStream.cc
Mon 15 Jan 12:47:01 GMT 2024
============================
- New configuration options for GIOP buffer size, direct send/receive
thresholds.
doc/omniORB.pdf
doc/omniORB/omniORB.html
doc/omniORB/omniORB004.html
doc/tex/omniORB.tex
sample.cfg
src/lib/omniORB/orbcore/giopStreamImpl.cc
Tue 19 Dec 16:37:16 GMT 2023
============================
- Support newer FreeBSD. Thanks Marcin Cieslak.
configure.ac
configure
src/lib/omnithread/posix.cc
Mon 25 Sep 21:15:10 BST 2023
============================
- Generate correct .d files in omnithread build.
src/lib/omnithread/dir.mk
Fri 22 Sep 20:13:30 BST 2023
============================
- Newer GNU make processes dependencies in a different order, breaking
.d file generation.
mk/afterauto.mk.in
mk/afterdir.mk
Mon 28 Aug 18:28:05 BST 2023
============================
- This is omniORB 4.3.1.
README.FIRST.txt
ReleaseNotes.txt
THIS_IS_OMNIORB_4_3_1
configure
configure.ac
contrib/RPMs/omniORB.spec
contrib/RPMs/omniORB_new.spec
mk/version.mk
Sun 13 Aug 18:58:27 BST 2023
============================
- Error with establishing a WebSocket connection through a web proxy.
src/lib/omniORB/orbcore/http/httpConnection.cc
src/lib/omniORB/orbcore/http/httpConnection.h
Thu 13 Jul 11:37:56 BST 2023
============================
- Handle removal of distutils from Python 3.12.
mk/python.mk
Sat 24 Jun 15:53:57 BST 2023
============================
- Correctly handle WebSocket fragments.
src/examples/http_echo/README
src/lib/omniORB/orbcore/http/httpConnection.cc
Sun 16 Apr 23:16:46 BST 2023
============================
- Remove unnecessary platform and processor defines.
mk/beforeauto.mk.in
Sun 16 Apr 15:26:02 BST 2023
============================
- Remove processor and platform defines from .pc file.
contrib/pkgconfig/omnithread3.pc.in
Sun 16 Apr 15:23:10 BST 2023
============================
- No need to undefine PACKAGE defines because they are now prefixed
with OMNI.
include/omniconfig.h.in
Sun 16 Apr 15:20:35 BST 2023
============================
- Avoid setting possibly-incorrect processor define (__arm__ instead
of __arm64__). Update autoconf and Python version support.
configure.ac
configure
include/omniORB4/CORBA_sysdep.h
include/omniconfig.h.in
mk/beforeauto.mk.in
Sat 8 Apr 18:05:53 BST 2023
============================
- Crash in transport rules extracting host part of http URLs.
include/omniORB4/giopEndpoint.h
src/lib/omniORB/orbcore/http/httpAddress.cc
src/lib/omniORB/orbcore/transportRules.cc
Tue 4 Apr 16:00:28 BST 2023
============================
- HTTP transport documentation update.
doc/omniORB.pdf
doc/omniORB/index.html
doc/omniORB/omniORB.html
doc/omniORB/omniORB001.html
doc/omniORB/omniORB002.html
doc/omniORB/omniORB003.html
doc/omniORB/omniORB004.html
doc/omniORB/omniORB005.html
doc/omniORB/omniORB006.html
doc/omniORB/omniORB007.html
doc/omniORB/omniORB008.html
doc/omniORB/omniORB009.html
doc/omniORB/omniORB010.html
doc/omniORB/omniORB011.html
doc/omniORB/omniORB012.html
doc/omniORB/omniORB013.html
doc/omniORB/omniORB014.html
doc/omniORB/omniORB015.html
doc/omniORB/omniORB016.html
doc/tex/omniORB.tex
Tue 4 Apr 15:56:10 BST 2023
============================
- Autoconf / Python version updates.
acinclude.m4
aclocal.m4
configure.ac
configure
include/omniORB4/acconfig_pre.h.in
mk/beforeauto.mk.in
src/tool/omniidl/cxx/cccp/cccp.c
src/tool/omniidl/python2/scripts/omniidl.in
src/tool/omniidl/python2/scripts/omniidlrun.py
src/tool/omniidl/python3/scripts/omniidl.in
src/tool/omniidl/python3/scripts/omniidlrun.py
- HTTP transport example.
src/examples/http_echo
src/examples/http_echo/GNUmakefile.in
src/examples/http_echo/GNUmakefile
src/examples/http_echo/README
src/examples/http_echo/dir.mak
src/examples/http_echo/dir.mk
src/examples/http_echo/eg2_clt.cc
src/examples/http_echo/eg2_impl.cc
Sun 26 Mar 18:53:16 BST 2023
============================
- Properly marshal huge sequences.
include/omniORB4/cdrStream.h
include/omniORB4/seqTemplatedefns.h
Sun 12 Feb 15:34:32 GMT 2023
============================
- Correctly initialise base hash when there are no callables in a file.
src/lib/omniORB/python2/omniidl_be/cxx/descriptor.py
src/lib/omniORB/python3/omniidl_be/cxx/descriptor.py
Sat 4 Feb 12:56:28 GMT 2023
============================
- Apple compiler does not define __VFP_FP__ on ARM, but the CPU uses
VFP floating point format.
include/omniORB4/CORBA_sysdep.h
Sun 29 Jan 15:58:24 GMT 2023
============================
- Correct type for literal string.
src/lib/omniORB/orbcore/orbOptionsReg.cc
Fri 27 Jan 11:41:58 GMT 2023
============================
- Obscure memory leak when a received raw string does not end with null.
src/lib/omniORB/orbcore/corbaString.cc
Sat 7 Jan 16:38:00 GMT 2023
============================
- Update some archaic C in old third-party tools.
src/tool/omkdepend/cppsetup.c
src/tool/omkdepend/def.h
src/tool/omkdepend/ifparser.c
src/tool/omkdepend/ifparser.h
src/tool/omkdepend/include.c
src/tool/omkdepend/main.c
src/tool/omkdepend/parse.c
src/tool/omkdepend/pr.c
src/tool/omniidl/cxx/cccp/cccp.c
src/tool/omniidl/cxx/cccp/cexp.c
- Avoid some warnings.
include/omniORB4/CORBA_BOA.h
include/omniORB4/CORBA_Exception.h
include/omniORB4/CORBA_Principal.h
include/omniORB4/CORBA_TypeCode.h
include/omniORB4/codeSets.h
include/omniORB4/internal/tcpSocket.h
include/omniORB4/seqTemplatedecls.h
include/omniORB4/valueTemplatedecls.h
include/omniORB4/wstringtypes.h
src/lib/omniORB/dynamic/tcParser.cc
src/lib/omniORB/dynamic/valueFactory.cc
src/lib/omniORB/dynamic/valueType.cc
src/lib/omniORB/orbcore/GIOP_C.cc
src/lib/omniORB/orbcore/corbaBoa.cc
src/lib/omniORB/orbcore/corbaOrb.cc
src/lib/omniORB/orbcore/giopServer.cc
src/lib/omniORB/orbcore/invoker.cc
src/lib/omniORB/orbcore/poa.cc
src/lib/omniORB/orbcore/tcpSocket.cc
src/lib/omniORB/orbcore/uri.cc
src/tool/omniidl/cxx/idlscope.cc
src/tool/omniidl/cxx/idlscope.h
src/tool/omniidl/cxx/idltype.h
Wed 4 Jan 19:06:45 GMT 2023
============================
- Build Windows wrapper executables during build; support Python
install in a path containing spaces.
bin/x86_win32/clwrapper.exe
bin/x86_win32/libwrapper.exe
bin/x86_win32/linkwrapper.exe
bin/x86_win32/oidlwrapper.exe
bin/x86_win32/omkdepend.exe
mk/platforms/x86_win32_vs_17.mk
mk/python.mk
src/tool/dir.mk
src/tool/omniidl/cxx/dir.mk
src/tool/win32/GNUmakefile
src/tool/win32/clwrapper.c
src/tool/win32/dir.mk
src/tool/win32/linkwrapper.c
src/tool/win32/oidlwrapper.c
src/tool/win32/pathmapping.h
Mon 2 Jan 17:08:19 GMT 2023
============================
- Platform file for Visual Studio 2022 / 17; allow parallel build on
Windows.
config/config.mk
mk/beforedir.mk
mk/platforms/x86_win32_vs_16.mk
mk/platforms/x86_win32_vs_17.mk
Mon 2 Jan 15:28:34 GMT 2023
============================
- Use [[maybe_unused]] attribute on static omniORB library symbol reference.
include/omniORB4/CORBA_sysdep.h
src/lib/omniORB/python2/omniidl_be/cxx/skel/template.py
src/lib/omniORB/python3/omniidl_be/cxx/skel/template.py
Thu 13 Oct 18:41:57 BST 2022
============================
- Windows build fixes.
bin/scripts/makedeffile.py
mk/win32.mk
Mon 25 Jul 21:30:04 BST 2022
============================
- Allow ServantLocator postinvoke to throw exceptions with C++11
compliant compilers.
src/lib/omniORB/dynamic/dynamicImplementation.cc
src/lib/omniORB/orbcore/callHandle.cc
Mon 25 Jul 21:18:46 BST 2022
============================
- Properly handle exceptions in DSI and DynAny when exceptionIdInAny is true.
include/omniORB4/CORBA_Any.h
src/lib/omniORB/dynamic/any.cc
src/lib/omniORB/dynamic/dynAny.cc
src/lib/omniORB/dynamic/serverRequest.cc
Sun 26 Jun 16:13:07 BST 2022
============================
- Use correct define name for disabling long double.
src/lib/omniORB/dir.mk
Sun 26 Jun 15:43:29 BST 2022
============================
- Log invocation returns from BOA.
src/lib/omniORB/orbcore/corbaBoa.cc
Sat 21 May 19:16:52 BST 2022
============================
- Error unmarshalling user exception in DII. Thanks to Pascal
Moucheront for the bug report.
include/omniORB4/CORBA_Any.h
src/lib/omniORB/dynamic/any.cc
src/lib/omniORB/dynamic/request.cc
Fri 20 May 19:12:37 BST 2022
============================
- Use auto DH parameters with OpenSSL 3.
src/lib/omniORB/orbcore/ssl/sslContext.cc
Fri 22 Apr 21:02:55 BST 2022
============================
- Only reset location forwarded reference on OBJECT_NOT_EXIST with a
standard minor code.
include/omniORB4/minorCode.h
src/lib/omniORB/orbcore/omniObjRef.cc
- Allow endpoints in endpoint override policy to be updated.
include/omniORB4/omniPolicy.h
src/lib/omniORB/orbcore/ior.cc
src/lib/omniORB/orbcore/omniPolicy.cc
- Retain address order for equal-priority endpoints.
src/lib/omniORB/orbcore/giopRope.cc
- Handle objects activated during adapter activation.
src/lib/omniORB/orbcore/poa.cc
Mon 11 Apr 18:41:08 BST 2022
============================
- Include multiple alternative port zero IIOP addresses in IORs with
multiple TLS endpoints, so some JacORB (and maybe other) clients
that do not handle the CSI sec mech list are able to try all
endpoints.
src/lib/omniORB/orbcore/ior.cc
Sun 13 Mar 15:44:43 GMT 2022
============================
- Bidirectional strands could be prematurely deleted if a thread timed
out while another thread was blocked in a call.
src/lib/omniORB/orbcore/giopBiDir.cc
src/lib/omniORB/orbcore/giopRope.cc
src/lib/omniORB/orbcore/giopStrand.cc
src/lib/omniORB/orbcore/giopStream.cc
Thu 20 Jan 14:08:56 GMT 2022
============================
- Fix Mac CFNetwork build.
mk/beforeauto.mk.in
src/lib/omniORB/orbcore/tcpSocket.cc
Sun 9 Jan 21:59:37 GMT 2022
============================
- This is omniORB 4.3.0.
Sun 9 Jan 21:42:12 GMT 2022
============================
- Bump suggested Python version to 3.10 in platform makefiles.
mk/platforms/x86_win32_vs_10.mk
mk/platforms/x86_win32_vs_11.mk
mk/platforms/x86_win32_vs_12.mk
mk/platforms/x86_win32_vs_14.mk
mk/platforms/x86_win32_vs_15.mk
mk/platforms/x86_win32_vs_16.mk
- Fix VC++ build error.
src/tool/omniidl/cxx/dir.mk
Sun 9 Jan 15:08:22 GMT 2022
============================
- Updates for 4.3.0 release.
README.FIRST.txt
ReleaseNotes.txt
contrib/RPMs/omniORB.spec
mk/version.mk
Sun 9 Jan 14:45:23 GMT 2022
============================
- Use correct path in http transport publish spec.
src/lib/omniORB/orbcore/http/httpEndpoint.cc
Sun 21 Nov 14:22:17 GMT 2021
============================
- No longer use -flat_namespace on Mac OS.
mk/beforeauto.mk.in
Sun 31 Oct 18:09:45 GMT 2021
============================
- Support Python 3.10.
mk/python.mk
Sun 31 Oct 17:41:18 GMT 2021
============================
- Minor build / warning tweaks.
src/lib/omniORB/dynamic/dynAny.cc
src/lib/omniORB/dynamic/serverRequest.cc
src/lib/omniORB/orbcore/giopRope.cc
src/tool/omniidl/cxx/cccp/config.h
src/tool/omniidl/cxx/dir.mk
src/tool/omniidl/cxx/idlpython.cc
src/tool/omniidl/cxx/idlsysdep.h
Fri 28 May 14:03:16 BST 2021
============================
- Add missing include in omkdepend on win32. Thanks Daniel Laugt.
src/tool/omkdepend/pr.c
Sun 11 Apr 13:53:42 BST 2021
============================
- Support zstd in ZIOP.
README.unix.txt
acinclude.m4
aclocal.m4
configure.ac
configure
idl/compression.idl
include/omniORB4/acconfig_pre.h.in
mk/beforeauto.mk.in
mk/platforms/x86_win32_vs_10.mk
mk/platforms/x86_win32_vs_11.mk
mk/platforms/x86_win32_vs_12.mk
mk/platforms/x86_win32_vs_14.mk
mk/platforms/x86_win32_vs_15.mk
mk/platforms/x86_win32_vs_16.mk
src/examples/ziop/ziop_impl.cc
src/lib/omniORB/ziop/dir.mk
src/lib/omniORB/ziop/omniZIOP.cc
src/lib/omniORB/ziop/zlibCompressor.cc
src/lib/omniORB/ziop/zstdCompressor.cc
src/lib/omniORB/ziop/zstdCompressor.h
Thu 8 Apr 18:47:56 BST 2021
============================
- Use correct compression level and buffer size in ZIOP.
src/lib/omniORB/ziop/omniZIOP.cc
- Support -j make flag.
mk/beforeauto.mk.in
Mon 15 Mar 17:34:15 GMT 2021
============================
- Fix minor leak of adapter name in adapter activator.
src/lib/omniORB/orbcore/poa.cc
Sat 13 Mar 22:42:09 GMT 2021
============================
- Re-enable make -j.
mk/beforeauto.mk.in
Mon 8 Mar 13:09:56 GMT 2021
============================
- Properly count arguments in omniMapper.
src/appl/omniMapper/omniMapper.cc
Mon 8 Mar 11:10:39 GMT 2021
============================
- Revert change to allow -j flags though, because it breaks RPM builds.
mk/beforeauto.mk.in
Mon 1 Mar 00:14:38 GMT 2021
============================
- Make rule updates.
configure.ac
configure
mk/beforeauto.mk.in
mk/java.mk
mk/linux.mk
mk/platforms/rtems.mk
mk/platforms/x86_ets.mk
mk/rtems.mk
mk/vxWorks.mk
src/dir.mk
src/lib/omniORB/dir.mk
Sun 17 Jan 16:36:47 GMT 2021
============================
- In detached threads, keep per-thread data until destructor; for
undetached ones, ensure that later use of per-thread data fails
cleanly.
src/lib/omnithread/nt.cc
src/lib/omnithread/posix.cc
Thu 31 Dec 18:09:21 GMT 2020
============================
- Correct capitalisation of TimeOut in docs and sample.cfg. Thanks
Luke Deller.
doc/omniORB.pdf
doc/omniORB/index.html
doc/omniORB/omniORB.html
doc/omniORB/omniORB001.html
doc/omniORB/omniORB002.html
doc/omniORB/omniORB003.html
doc/omniORB/omniORB004.html
doc/omniORB/omniORB005.html
doc/omniORB/omniORB006.html
doc/omniORB/omniORB007.html
doc/omniORB/omniORB008.html
doc/omniORB/omniORB009.html
doc/omniORB/omniORB010.html
doc/omniORB/omniORB011.html
doc/omniORB/omniORB012.html
doc/omniORB/omniORB013.html
doc/omniORB/omniORB014.html
doc/omniORB/omniORB015.html
doc/omniORB/omniORB016.html
doc/tex/omniORB.tex
sample.cfg
Wed 4 Nov 15:26:54 GMT 2020
============================
- Correctly set OpenSSL cipher list.
src/lib/omniORB/orbcore/ssl/sslContext.cc
Mon 26 Oct 22:03:22 GMT 2020
============================
- Convert std::bad_alloc during call marshalling into CORBA::NO_MEMORY.
include/omniORB4/callDescriptor.h
src/lib/omniORB/orbcore/inProcessIdentity.cc
src/lib/omniORB/orbcore/localIdentity.cc
src/lib/omniORB/orbcore/omniObjRef.cc
src/lib/omniORB/orbcore/remoteIdentity.cc
Mon 21 Sep 23:24:27 BST 2020
============================
- Remove stray #endif.
include/omniORB4/CORBA_sysdep_trad.h
Mon 21 Sep 22:46:33 BST 2020
============================
- Clean up and rationalise platform dependencies.
acinclude.m4
configure.ac
configure
idl/corbaidl.idl
include/omniORB4/CORBA_Any.h
include/omniORB4/CORBA_Any_vartypes.h
include/omniORB4/CORBA_Fixed.h
include/omniORB4/CORBA_TypeCode.h
include/omniORB4/CORBA_basetypes.h
include/omniORB4/CORBA_primitive_types.h
include/omniORB4/CORBA_sysdep.h
include/omniORB4/CORBA_sysdep_auto.h
include/omniORB4/CORBA_sysdep_trad.h
include/omniORB4/acconfig.h.in
include/omniORB4/acconfig_pre.h.in
include/omniORB4/cdrStream.h
include/omniORB4/codeSets.h
include/omniORB4/dynAny.h
include/omniORB4/fixed.h
include/omniORB4/internal/codeSetUtil.h
include/omniORB4/internal/dynAnyImpl.h
include/omniORB4/internal/libcWrapper.h
include/omniORB4/internal/tcpSocket.h
include/omniORB4/local_config.h
include/omniORB4/omniInternal.h
include/omniORB4/omniORB.h
include/omniORB4/seqTemplatedefns.h
include/omniORB4/stringtypes.h
include/omniORB4/tracedthread.h
include/omniORB4/wstringtypes.h
include/omniconfig.h
src/appl/omniMapper/omniMapper.cc
src/appl/omniNames/NamingContext_i.cc
src/appl/omniNames/log.cc
src/appl/omniNames/log.h
src/appl/omniNames/omniNames.cc
src/appl/omniNames/omniNamesWin.cc
src/appl/utils/catior/catior.cc
src/appl/utils/convertior/convertior.cc
src/appl/utils/genior/genior.cc
src/appl/utils/nameclt/nameclt.cc
src/examples/ami/echo_callback.cc
src/examples/ami/echo_dii_pollable_set.cc
src/examples/ami/echo_pollable_set.cc
src/examples/ami/echo_poller.cc
src/examples/anyExample/anyExample_clt.cc
src/examples/anyExample/anyExample_impl.cc
src/examples/bidir/bd_client.cc
src/examples/bidir/bd_server.cc
src/examples/bidir/bd_shutdown.cc
src/examples/boa/eg2_impl.cc
src/examples/call_back/cb_client.cc
src/examples/call_back/cb_server.cc
src/examples/call_back/cb_shutdown.cc
src/examples/dii/echo_diiclt.cc
src/examples/dsi/echo_dsiimpl.cc
src/examples/echo/eg1.cc
src/examples/echo/eg2_clt.cc
src/examples/echo/eg2_impl.cc
src/examples/echo/eg3_clt.cc
src/examples/echo/eg3_impl.cc
src/examples/echo/eg3_tieimpl.cc
src/examples/poa/implicit_activation/eg1.cc
src/examples/poa/persistent_objref/eg2_impl.cc
src/examples/poa/servant_manager/servant_activator.cc
src/examples/poa/servant_manager/servant_locator.cc
src/examples/poa/shortcut/shortcut.cc
src/examples/poa/threading/mainthread.cc
src/examples/ssl_echo/eg2_clt.cc
src/examples/ssl_echo/eg2_impl.cc
src/examples/thread/diner.cc
src/examples/thread/prio.cc
src/examples/thread/prodcons.cc
src/examples/thread/thrspecdata.cc
src/examples/valuetype/simple/vclient.cc
src/examples/valuetype/simple/vcoloc.cc
src/examples/valuetype/simple/vserver.cc
src/lib/omniORB/codesets/cs-UCS-4.cc
src/lib/omniORB/dynamic/any.cc
src/lib/omniORB/dynamic/dynAny.cc
src/lib/omniORB/dynamic/dynAnyNil.cc
src/lib/omniORB/dynamic/dynException.cc
src/lib/omniORB/dynamic/dynamicImplementation.cc
src/lib/omniORB/dynamic/policy.cc
src/lib/omniORB/dynamic/tcParser.cc
src/lib/omniORB/dynamic/typecode.cc
src/lib/omniORB/dynamic/valueFactory.cc
src/lib/omniORB/dynamic/valueType.cc
src/lib/omniORB/orbcore/GIOP_S.cc
src/lib/omniORB/orbcore/callHandle.cc
src/lib/omniORB/orbcore/cdrMemoryStream.cc
src/lib/omniORB/orbcore/cdrStream.cc
src/lib/omniORB/orbcore/constants.cc
src/lib/omniORB/orbcore/corbaBoa.cc
src/lib/omniORB/orbcore/corbaFixed.cc
src/lib/omniORB/orbcore/corbaOrb.cc
src/lib/omniORB/orbcore/cs-16bit.cc
src/lib/omniORB/orbcore/cs-UTF-16.cc
src/lib/omniORB/orbcore/cs-UTF-8.cc
src/lib/omniORB/orbcore/giopBiDir.cc
src/lib/omniORB/orbcore/giopStreamImpl.cc
src/lib/omniORB/orbcore/http/httpAddress.cc
src/lib/omniORB/orbcore/http/httpConnection.cc
src/lib/omniORB/orbcore/inProcessIdentity.cc
src/lib/omniORB/orbcore/libcWrapper.cc
src/lib/omniORB/orbcore/localIdentity.cc
src/lib/omniORB/orbcore/localObject.cc
src/lib/omniORB/orbcore/logIOstream.cc
src/lib/omniORB/orbcore/omniInternal.cc
src/lib/omniORB/orbcore/omniPolicy.cc
src/lib/omniORB/orbcore/poa.cc
src/lib/omniORB/orbcore/policy.cc
src/lib/omniORB/orbcore/portableserver.cc
src/lib/omniORB/orbcore/tcp/tcpTransportImpl.cc
src/lib/omniORB/orbcore/tcpSocket.cc
src/lib/omniORB/orbcore/tracedthread.cc
src/lib/omniORB/orbcore/uri.cc
src/lib/omniORB/python2/omniidl_be/cxx/dynskel/template.py
src/lib/omniORB/python2/omniidl_be/cxx/header/template.py
src/lib/omniORB/python2/omniidl_be/cxx/skel/template.py
src/lib/omniORB/python2/omniidl_be/cxx/skutil.py
src/lib/omniORB/python2/omniidl_be/cxx/value.py
src/lib/omniORB/python3/omniidl_be/cxx/dynskel/template.py
src/lib/omniORB/python3/omniidl_be/cxx/header/template.py
src/lib/omniORB/python3/omniidl_be/cxx/skel/template.py
src/lib/omniORB/python3/omniidl_be/cxx/skutil.py
src/lib/omniORB/python3/omniidl_be/cxx/value.py
src/lib/omnithread/posix.cc
src/tool/omniidl/cxx/cccp/alloca.c
src/tool/omniidl/cxx/cccp/cccp.c
src/tool/omniidl/cxx/cccp/cexp.c
src/tool/omniidl/cxx/cccp/config-aix.h
src/tool/omniidl/cxx/cccp/config-darwin.h
src/tool/omniidl/cxx/cccp/config-freebsd.h
src/tool/omniidl/cxx/cccp/config-hpux.h
src/tool/omniidl/cxx/cccp/config-irix.h
src/tool/omniidl/cxx/cccp/config-linux.h
src/tool/omniidl/cxx/cccp/config-lynxos.h
src/tool/omniidl/cxx/cccp/config-nextstep.h
src/tool/omniidl/cxx/cccp/config-osf1.h
src/tool/omniidl/cxx/cccp/config-sinix.h
src/tool/omniidl/cxx/cccp/config-solaris.h
src/tool/omniidl/cxx/cccp/config-vms.h
src/tool/omniidl/cxx/cccp/config-windows.h
src/tool/omniidl/cxx/cccp/config.h
src/tool/omniidl/cxx/cccp/dir.mk
src/tool/omniidl/cxx/idlast.cc
src/tool/omniidl/cxx/idlast.h
src/tool/omniidl/cxx/idldump.cc
src/tool/omniidl/cxx/idlexpr.cc
src/tool/omniidl/cxx/idlexpr.h
src/tool/omniidl/cxx/idlmath.h
src/tool/omniidl/cxx/idlpython.cc
src/tool/omniidl/cxx/idlsysdep.h
src/tool/omniidl/cxx/idlutil.cc
src/tool/omniidl/cxx/idlutil.h
Sat 29 Aug 22:43:10 BST 2020
============================
- Remove long obsolete services headers.
src/services/include
src/services/include/BootStrapAgent.h
src/services/include/CosNaming_i.h
src/services/include/CosNotify.h
src/services/include/CosNotifyComm_i.h
src/services/include/corba_wrappers.h
Sat 29 Aug 17:36:51 BST 2020
============================
- Remove invalid end-of-line comment in sample config file.
sample.cfg
Tue 18 Aug 22:43:08 BST 2020
============================
- Fix overlapping strcpy in omkdepend.
src/tool/omkdepend/parse.c
Sat 20 Jun 23:07:40 BST 2020
============================
- Fix marshalling of exceptions in Anys, for interoperability with
omniORBpy and JacORB. New exceptionIdInAny configuration option to
switch to previous behaviour.
ReleaseNotes.txt
doc/omniORB.pdf
doc/omniORB/index.html
doc/omniORB/omniORB.html
doc/omniORB/omniORB003.html
doc/omniORB/omniORB004.html
doc/omniORB/omniORB005.html
doc/omniORB/omniORB006.html
doc/omniORB/omniORB007.html
doc/omniORB/omniORB008.html
doc/omniORB/omniORB009.html
doc/omniORB/omniORB010.html
doc/omniORB/omniORB011.html
doc/omniORB/omniORB012.html
doc/omniORB/omniORB013.html
doc/omniORB/omniORB014.html
doc/omniORB/omniORB015.html
doc/omniORB/omniORB016.html
doc/tex/omniORB.tex
include/omniORB4/CORBA_Any.h
include/omniORB4/internal/orbParameters.h
include/omniORB4/internal/typecode.h
include/omniORB4/sslContext.h
sample.cfg
sample.reg
src/lib/omniORB/dynamic/any.cc
src/lib/omniORB/dynamic/dynException.cc
src/lib/omniORB/dynamic/policy.cc
src/lib/omniORB/dynamic/tcParser.cc
src/lib/omniORB/dynamic/typecode.cc
src/lib/omniORB/dynamic/unknownUserExn.cc
src/lib/omniORB/orbcore/dynamicLib.cc
src/lib/omniORB/orbcore/ssl/sslContext.cc
src/lib/omniORB/python2/omniidl_be/cxx/dynskel/template.py
src/lib/omniORB/python3/omniidl_be/cxx/dynskel/template.py
Sat 13 Jun 22:58:23 BST 2020
============================
- Avoid clash with C++20 "requires" keyword.
include/omniORB4/omniIOR.h
src/lib/omniORB/orbcore/ior.cc
Fri 5 Jun 00:47:50 BST 2020
============================
- Documentation and example updates.
ReleaseNotes.txt
doc/omniNames.html
doc/omniNames.pdf
doc/omniORB.pdf
doc/omniORB/index.html
doc/omniORB/omniORB.html
doc/omniORB/omniORB001.html
doc/omniORB/omniORB002.html
doc/omniORB/omniORB003.html
doc/omniORB/omniORB004.html
doc/omniORB/omniORB005.html
doc/omniORB/omniORB006.html
doc/omniORB/omniORB007.html
doc/omniORB/omniORB008.html
doc/omniORB/omniORB009.html
doc/omniORB/omniORB010.html
doc/omniORB/omniORB011.html
doc/omniORB/omniORB012.html
doc/omniORB/omniORB013.html
doc/omniORB/omniORB014.html
doc/omniORB/omniORB015.html
doc/omniORB/omniORB016.html
doc/omniidl.html
doc/omniidl.pdf
doc/omnithread.html
doc/omnithread.pdf
doc/tex/omniNames.tex
doc/tex/omniORB.tex
doc/tex/omniidl.tex
doc/tex/omnithread.tex
doc/tex/utilities.tex
doc/utilities.html
doc/utilities.pdf
src/examples/echo/eg3_clt.cc
src/examples/echo/eg3_impl.cc
src/examples/echo/eg3_tieimpl.cc
Fri 5 Jun 00:45:37 BST 2020
============================
- Plain object keys policy.
include/omniORB4/internal/poaimpl.h
include/omniORB4/omniPolicy.h
src/lib/omniORB/dynamic/policy.cc
src/lib/omniORB/orbcore/omniPolicy.cc
src/lib/omniORB/orbcore/poa.cc
Sun 31 May 15:05:09 BST 2020
============================
- Use omni namespace in SSL examples.
src/examples/ssl_echo/eg2_clt.cc
src/examples/ssl_echo/eg2_impl.cc
Wed 13 May 00:11:25 BST 2020
============================
- All in-use Darwin versions now apparently have a working poll().
include/omniORB4/internal/tcpSocket.h
Mon 11 May 23:36:59 BST 2020
============================
- Rename python directories to python2.
configure.ac
configure
src/lib/omniORB/dir.mk
src/lib/omniORB/python
src/lib/omniORB/python2
src/tool/omniidl/python2
Mon 11 May 23:48:37 BST 2020
============================
- Merge fixes from 4_2.
include/omniORB4/internal/tcpSocket.h
include/omnithread.h
src/lib/omniORB/orbcore/ssl/sslConnection.cc
src/lib/omniORB/orbcore/tcp/tcpConnection.cc
src/lib/omniORB/orbcore/tcpSocket.cc
src/lib/omniORB/orbcore/unix/unixConnection.cc
src/tool/omniidl/cxx/idlscope.cc
Mon 11 May 23:44:12 BST 2020
============================
- Update release notes.
ReleaseNotes.txt
Wed 29 Apr 21:38:14 BST 2020
============================
- Avoid warning about virtual functions shadowing each other.
src/lib/omniORB/python/omniidl_be/cxx/value.py
src/lib/omniORB/python3/omniidl_be/cxx/value.py
Mon 27 Apr 17:47:44 BST 2020
============================
- Avoid temporary Any when marshalling nested Any. It led to
exponential performance with deeply nested Anys.
src/lib/omniORB/dynamic/tcParser.cc
Mon 27 Apr 17:46:11 BST 2020
============================
- Use -O3 by default.
configure.ac
configure
Fri 24 Apr 22:14:35 BST 2020
============================
- Improve MessageError logging.
src/lib/omniORB/orbcore/giopImpl10.cc
src/lib/omniORB/orbcore/giopImpl11.cc
src/lib/omniORB/orbcore/giopImpl12.cc
Mon 6 Apr 12:16:47 BST 2020
============================
- Updates for 4.3.0 beta 1.
README.FIRST.txt
ReleaseNotes.txt
THIS_IS_OMNIORB_4_3_0_BETA_1
THIS_IS_OMNIORB_4_3_PRE
mk/version.mk
Mon 6 Apr 09:47:37 BST 2020
============================
- Remove deprecated_hold_lock parameter that was retained for ABI
compatibility.
include/omniORB4/internal/SocketCollection.h
src/lib/omniORB/orbcore/SocketCollection.cc
Mon 6 Apr 00:05:55 BST 2020
============================
- Merge from 4.2.4.
omniORB/ReleaseChecklist.txt
Tue 24 Mar 22:13:30 GMT 2020
============================
- Avoid some warnings.
include/omniORB4/giopEndpoint.h
src/lib/omniORB/orbcore/SocketCollection.cc
src/lib/omniORB/orbcore/giopServer.cc
Sat 8 Feb 22:55:25 GMT 2020
============================
- Platform file for Visual Studio 16 / 2019.
config/config.mk
mk/platforms/x86_win32_vs_16.mk
Tue 17 Dec 14:55:15 GMT 2019
============================
- Update docs and READMEs.
README.FIRST.txt
README.unix.txt
doc/omniORB.pdf
doc/omniORB/index.html
doc/omniORB/omniORB.html
doc/omniORB/omniORB001.html
doc/omniORB/omniORB015.html
doc/tex/omniORB.tex
Thu 26 Sep 13:30:20 BST 2019
============================
- Merge Python 3 thread interceptor fix and doc updates from 4_2.
doc/omniORB.pdf
doc/omniORB/contents_motif.gif
doc/omniORB/contents_motif.svg
doc/omniORB/next_motif.gif
doc/omniORB/next_motif.svg
doc/omniORB/omniORB.html
doc/omniORB/omniORB002.html
doc/omniORB/previous_motif.gif
doc/omniORB/previous_motif.svg
Wed 28 Aug 14:22:50 BST 2019
============================
- makedeffile.py works on Python 3.
bin/scripts/makedeffile.py
Wed 28 Aug 14:07:49 BST 2019
============================
- Ensure all std namespace functions are filtered from def files.
bin/scripts/makedeffile.py
mk/win32.mk
Thu 15 Aug 12:23:11 BST 2019
============================
- Add missing return.
src/lib/omniORB/orbcore/http/httpTransportImpl.cc
Tue 13 Aug 14:15:31 BST 2019
============================
- pypy3 support.
acinclude.m4
configure.ac
configure
Tue 2 Jul 21:33:32 BST 2019
============================
- Missing break in previous check-in.
src/lib/omniORB/orbcore/unix/unixTransportImpl.cc
Mon 1 Jul 11:43:00 BST 2019
============================
- Race condition creating unix transport socket directory.
src/lib/omniORB/orbcore/unix/unixTransportImpl.cc
Wed 20 Mar 17:28:41 GMT 2019
============================
- Add missing stdio include.
src/lib/omniORB/orbcore/tcpSocket.cc
Wed 20 Mar 16:26:49 GMT 2019
============================
- No need to allocate and copy into buffer when unmarshalling a void
or null Any.
src/lib/omniORB/dynamic/any.cc
Tue 5 Mar 10:16:06 GMT 2019
============================
- Fix default endPoints; remove accidentally-included debug code.
include/omniORB4/omniURI.h
src/lib/omniORB/orbcore/http/httpConnection.cc
src/lib/omniORB/orbcore/http/httpTransportImpl.cc
src/lib/omniORB/orbcore/uri.cc
Mon 4 Mar 23:12:22 GMT 2019
============================
- WebSocket support in HTTP transport.
doc/omniORB.pdf
doc/omniORB/index.html
doc/omniORB/omniORB.html
doc/omniORB/omniORB001.html
doc/omniORB/omniORB002.html
doc/omniORB/omniORB003.html
doc/omniORB/omniORB004.html
doc/omniORB/omniORB005.html
doc/omniORB/omniORB006.html
doc/omniORB/omniORB007.html
doc/omniORB/omniORB008.html
doc/omniORB/omniORB009.html
doc/omniORB/omniORB010.html
doc/omniORB/omniORB011.html
doc/omniORB/omniORB012.html
doc/omniORB/omniORB013.html
doc/omniORB/omniORB014.html
doc/omniORB/omniORB015.html
doc/omniORB/omniORB016.html
doc/tex/omniORB.tex
include/omniORB4/connectionInfo.h
include/omniORB4/httpContext.h
include/omniORB4/httpCrypto.h
include/omniORB4/omniURI.h
src/lib/omniORB/httpcrypto/httpCrypto.cc
src/lib/omniORB/orbcore/connectionInfo.cc
src/lib/omniORB/orbcore/giopRope.cc
src/lib/omniORB/orbcore/http/httpActive.cc
src/lib/omniORB/orbcore/http/httpAddress.cc
src/lib/omniORB/orbcore/http/httpAddress.h
src/lib/omniORB/orbcore/http/httpConnection.cc
src/lib/omniORB/orbcore/http/httpConnection.h
src/lib/omniORB/orbcore/http/httpContext.cc
src/lib/omniORB/orbcore/http/httpEndpoint.cc
src/lib/omniORB/orbcore/http/httpEndpoint.h
src/lib/omniORB/orbcore/http/httpTransportImpl.cc
src/lib/omniORB/orbcore/http/httpTransportImpl.h
src/lib/omniORB/orbcore/ior.cc
src/lib/omniORB/orbcore/ssl/sslAddress.cc
src/lib/omniORB/orbcore/ssl/sslAddress.h
src/lib/omniORB/orbcore/uri.cc
Mon 4 Mar 23:07:00 GMT 2019
============================
- Fix catch by non-reference type.
src/appl/utils/nameclt/nameclt.cc
Tue 8 Jan 17:50:03 GMT 2019
============================
- Include transport type in connection info connect event.
include/omniORB4/internal/tcpSocket.h
src/lib/omniORB/orbcore/http/httpAddress.cc
src/lib/omniORB/orbcore/ssl/sslAddress.cc
src/lib/omniORB/orbcore/tcp/tcpAddress.cc
src/lib/omniORB/orbcore/tcpSocket.cc
- Fix leak of peer certificate.
src/lib/omniORB/orbcore/http/httpContext.cc
- Accept HTTP/1.0 responses.
src/lib/omniORB/orbcore/http/httpConnection.cc
Fri 14 Dec 10:57:04 GMT 2018
============================
- Merge comment typo fix.
include/omniORB4/tracedthread.h
Tue 11 Dec 00:23:12 GMT 2018
============================
- Small merge from 4.2.3.
aclocal.m4
configure
contrib/RPMs/omniORB.spec
contrib/RPMs/omniORB_new.spec
mk/version.mk
Tue 4 Dec 10:02:22 GMT 2018
============================
- Use FNV-1a hash for object table.
include/omniORB4/omniInternal.h
include/omniORB4/omniORBcompat.h
src/lib/omniORB/orbcore/corbaBoa.cc
- Change fixed-sized struct var to store a pointer to the struct.
include/omniORB4/templatedecls.h
Thu 29 Nov 17:10:43 GMT 2018
============================
- Avoid clash with std::empty.
src/examples/thread/prodcons.cc
Tue 27 Nov 12:34:07 GMT 2018
============================
- Merge small changes from 4_2 branch.
src/examples/ami/dir.mak
src/examples/boa/dir.mak
src/examples/poa/shortcut/dir.mak
src/lib/omniORB/ziopdynamic/dir.mk
Mon 26 Nov 12:46:40 GMT 2018
============================
- Add is_error flag to connection info callbacks.
include/omniORB4/connectionInfo.h
src/lib/omniORB/httpcrypto/httpCrypto.cc
src/lib/omniORB/orbcore/connectionInfo.cc
src/lib/omniORB/orbcore/giopRope.cc
src/lib/omniORB/orbcore/http/httpAddress.cc
src/lib/omniORB/orbcore/http/httpConnection.cc
src/lib/omniORB/orbcore/http/httpEndpoint.cc
src/lib/omniORB/orbcore/ssl/sslAddress.cc
src/lib/omniORB/orbcore/ssl/sslConnection.cc
src/lib/omniORB/orbcore/ssl/sslEndpoint.cc
src/lib/omniORB/orbcore/tcp/tcpConnection.cc
src/lib/omniORB/orbcore/tcp/tcpEndpoint.cc
src/lib/omniORB/orbcore/tcpSocket.cc
src/lib/omniORB/orbcore/unix/unixAddress.cc
src/lib/omniORB/orbcore/unix/unixConnection.cc
src/lib/omniORB/orbcore/unix/unixEndpoint.cc
Tue 30 Oct 17:14:21 GMT 2018
============================
- Avoid warnings about assignments in conditional expressions.
include/omniORB4/CORBA_ValueBase_vartypes.h
include/omniORB4/poa.h
Thu 27 Sep 16:56:19 BST 2018
============================
- Connection info for the Unix socket transport.
include/omniORB4/connectionInfo.h
src/lib/omniORB/orbcore/unix/unixAddress.cc
src/lib/omniORB/orbcore/unix/unixConnection.cc
src/lib/omniORB/orbcore/unix/unixEndpoint.cc
Thu 27 Sep 11:12:40 BST 2018
============================
- Do not send Proxy-Authorization after using a CONNECT request for a tunnel.
src/lib/omniORB/orbcore/http/httpConnection.cc
Wed 5 Sep 18:09:37 BST 2018
============================
- Fix race condition leading to use of deleted giopAddress object.
include/omniORB4/internal/giopRope.h
src/lib/omniORB/orbcore/GIOP_C.cc
src/lib/omniORB/orbcore/giopRope.cc
Wed 5 Sep 16:21:32 BST 2018
============================
- Always add all algorithms with OpenSSL 1.0, even if the SSL
transport is disabled.
src/lib/omniORB/orbcore/ssl/sslTransportImpl.cc
Wed 5 Sep 16:19:11 BST 2018
============================
- Merge build fixes from 4_2 branch.
mk/beforeauto.mk.in
mk/win32.mk
src/services/mklib/dynstublib/dir.mk
src/tool/omkdepend/ifparser.h
src/tool/omniidl/cxx/dir.mk
Thu 30 Aug 14:06:02 BST 2018
============================
- ziopDynamic library link fix.
src/lib/omniORB/ziopdynamic/dir.mk
Thu 30 Aug 13:50:10 BST 2018
============================
- Logger improvements -- non-omni-thread ids; Windows size_t.
include/omniORB4/omniORB.h
include/omnithread.h
mk/version.mk
src/lib/omniORB/orbcore/logIOstream.cc
src/lib/omnithread/nt.cc
src/lib/omnithread/posix.cc
src/lib/omnithread/vxWorks.cc
- ConnectionInfo callback; HTTP transport fixes; sslConext moved into
omni namespace.
ReleaseNotes.txt
include/omniORB4/GNUmakefile.in
include/omniORB4/connectionInfo.h
include/omniORB4/httpContext.h
include/omniORB4/sslContext.h
src/lib/omniORB/httpcrypto/httpCrypto.cc
src/lib/omniORB/orbcore/connectionInfo.cc
src/lib/omniORB/orbcore/dir.mk
src/lib/omniORB/orbcore/giopRope.cc
src/lib/omniORB/orbcore/http/httpActive.cc
src/lib/omniORB/orbcore/http/httpAddress.cc
src/lib/omniORB/orbcore/http/httpAddress.h
src/lib/omniORB/orbcore/http/httpConnection.cc
src/lib/omniORB/orbcore/http/httpConnection.h
src/lib/omniORB/orbcore/http/httpContext.cc
src/lib/omniORB/orbcore/http/httpEndpoint.cc
src/lib/omniORB/orbcore/ssl/sslAddress.cc
src/lib/omniORB/orbcore/ssl/sslConnection.cc
src/lib/omniORB/orbcore/ssl/sslEndpoint.cc
src/lib/omniORB/orbcore/ssl/sslTransportImpl.h
src/lib/omniORB/orbcore/tcp/tcpConnection.cc
src/lib/omniORB/orbcore/tcp/tcpEndpoint.cc
src/lib/omniORB/orbcore/tcpSocket.cc
Fri 17 Aug 17:53:11 BST 2018
============================
- Handle re-chunked HTTP messages containing encrypted data.
include/omniORB4/minorCode.h
src/lib/omniORB/httpcrypto/httpCrypto.cc
src/lib/omniORB/orbcore/http/httpConnection.cc
src/lib/omniORB/orbcore/http/httpConnection.h
Tue 7 Aug 10:46:27 BST 2018
============================
- Correct linkage and Windows binary release.
src/lib/omniORB/httpcrypto/dir.mk
Fri 3 Aug 15:30:14 BST 2018
============================
- Another Windows build fix.
src/lib/omniORB/httpcrypto/dir.mk
Thu 26 Jul 13:14:17 BST 2018
============================
- Windows build fixes.
mk/beforeauto.mk.in
mk/platforms/x86_win32_vs_10.mk
mk/platforms/x86_win32_vs_11.mk
mk/platforms/x86_win32_vs_12.mk
mk/platforms/x86_win32_vs_14.mk
mk/platforms/x86_win32_vs_15.mk
mk/win32.mk
src/lib/omniORB/dir.mk
src/lib/omniORB/httpcrypto/httpCrypto.cc
Wed 25 Jul 17:55:11 BST 2018
============================
- HTTP in-message crypto.
ReleaseNotes.txt
acinclude.m4
configure.ac
configure
doc/omniORB.pdf
doc/omniORB/index.html
doc/omniORB/omniORB.css
doc/omniORB/omniORB.html
doc/omniORB/omniORB006.html
doc/omniORB/omniORB007.html
doc/omniORB/omniORB008.html
doc/omniORB/omniORB009.html
doc/omniORB/omniORB010.html
doc/omniORB/omniORB011.html
doc/omniORB/omniORB012.html
doc/omniORB/omniORB013.html
doc/omniORB/omniORB014.html
doc/omniORB/omniORB015.html
doc/omniORB/omniORB016.html
doc/tex/omniORB.tex
include/omniORB4/GNUmakefile.in
include/omniORB4/callDescriptor.h
include/omniORB4/callHandle.h
include/omniORB4/httpContext.h
include/omniORB4/httpCrypto.h
include/omniORB4/internal/tcpSocket.h
include/omniORB4/minorCode.h
include/omniORB4/sslContext.h
include/omniORB4/tracedthread.h
mk/beforeauto.mk.in
src/lib/omniORB/dir.mk
src/lib/omniORB/httpcrypto
src/lib/omniORB/httpcrypto/GNUmakefile.in
src/lib/omniORB/httpcrypto/GNUmakefile
src/lib/omniORB/httpcrypto/dir.mk
src/lib/omniORB/httpcrypto/httpCrypto.cc
src/lib/omniORB/orbcore/callDescriptor.cc
src/lib/omniORB/orbcore/callHandle.cc
src/lib/omniORB/orbcore/exception.cc
src/lib/omniORB/orbcore/http/httpActive.cc
src/lib/omniORB/orbcore/http/httpConnection.cc
src/lib/omniORB/orbcore/http/httpConnection.h
src/lib/omniORB/orbcore/http/httpContext.cc
src/lib/omniORB/orbcore/http/httpTransportImpl.cc
src/lib/omniORB/orbcore/http/httpTransportImpl.h
src/lib/omniORB/orbcore/minorCode.cc
src/lib/omniORB/orbcore/ssl/sslActive.cc
src/lib/omniORB/orbcore/ssl/sslConnection.cc
src/lib/omniORB/orbcore/ssl/sslConnection.h
src/lib/omniORB/orbcore/ssl/sslContext.cc
Wed 11 Jul 17:38:18 BST 2018
============================
- With retainAddressOrder false, an immediately failed connection on a
resolved address racing with a second thread trying to open a
connection to the same server, could lead to an assertion failure.
src/lib/omniORB/orbcore/giopRope.cc
Mon 9 Jul 11:14:57 BST 2018
============================
- Remove lots of obsolete platform files; update current Windows ones.
config/config.mk
mk/platforms/alpha_linux_2.0.mk
mk/platforms/alpha_nt_4.0.mk
mk/platforms/alpha_osf1_3.2.mk
mk/platforms/alpha_osf1_4.0.mk
mk/platforms/alpha_osf1_5.0.mk
mk/platforms/arm_linux_mvl_3.1.mk
mk/platforms/hppa_hpux_10.20.mk
mk/platforms/hppa_hpux_11.00.mk
mk/platforms/hppa_hpux_11.23.mk
mk/platforms/i586_linux_2.0.mk
mk/platforms/i586_linux_2.0_glibc.mk
mk/platforms/i586_linux_2.0_glibc2.1.mk
mk/platforms/ia64_hpux_11.23.mk
mk/platforms/m68k_nextstep_3.3.mk
mk/platforms/mips_irix_6.2_n32.mk
mk/platforms/mips_irix_6.4_6.5_common.mk
mk/platforms/mips_irix_6.4_64.mk
mk/platforms/mips_irix_6.4_n32.mk
mk/platforms/mips_irix_6.5_64.mk
mk/platforms/mips_irix_6.5_n32.mk
mk/platforms/mips_sinux_5.43.mk
mk/platforms/powerpc_aix_4.2.mk
mk/platforms/powerpc_aix_4.2_egcs.mk
mk/platforms/powerpc_aix_4.2_xlc5.mk
mk/platforms/powerpc_aix_4.3_gcc.mk
mk/platforms/powerpc_aix_4.3_xlc5.mk
mk/platforms/powerpc_darwin_1.3.mk
mk/platforms/s390_linux_glibc2.1.mk
mk/platforms/sun4_sosV_5.5.mk
mk/platforms/sun4_sosV_5.6.mk
mk/platforms/sun4_sosV_5.7.mk
mk/platforms/x86_freebsd_3.2.mk
mk/platforms/x86_freebsd_4.0.mk
mk/platforms/x86_nextstep_3.3.mk
mk/platforms/x86_osr5.mk
mk/platforms/x86_sosV_5.5.mk
mk/platforms/x86_win32_vs_10.mk
mk/platforms/x86_win32_vs_11.mk
mk/platforms/x86_win32_vs_12.mk
mk/platforms/x86_win32_vs_14.mk
mk/platforms/x86_win32_vs_15.mk
mk/platforms/x86_win32_vs_6.mk
mk/platforms/x86_win32_vs_7.mk
mk/platforms/x86_win32_vs_8.mk
mk/platforms/x86_win32_vs_9.mk
Mon 9 Jul 10:24:03 BST 2018
============================
- Wrong Host header for resolved addresses in HTTP transport.
src/lib/omniORB/orbcore/http/httpAddress.cc
src/lib/omniORB/orbcore/http/httpAddress.h
- Remove unnecessary duplicated msvcdllstub.cc.
src/lib/omniORB/orbcore/http/dir.mk
src/lib/omniORB/orbcore/http/msvcdlldtub.cc
src/lib/omniORB/orbcore/ssl/dir.mk
src/lib/omniORB/orbcore/ssl/msvcdllstub.cc
Tue 3 Jul 17:47:46 BST 2018
============================
- Logging could attempt to access deleted address.
include/omniORB4/internal/giopStream.h
src/lib/omniORB/orbcore/giopStream.cc
Wed 27 Jun 10:53:08 BST 2018
============================
- Windows build fixes.
include/omniORB4/CORBA_sysdep.h
src/lib/omniORB/orbcore/http/httpActive.cc
src/lib/omniORB/orbcore/http/httpAddress.cc
src/lib/omniORB/orbcore/http/httpConnection.cc
src/lib/omniORB/orbcore/http/httpEndpoint.cc
src/lib/omniORB/orbcore/http/httpTransportImpl.cc
src/lib/omniORB/orbcore/http/msvcdlldtub.cc
Wed 16 May 13:53:26 BST 2018
============================
- retainAddressOrder fails to reset addresses if initial name
resolution fails; make it default to false.
src/lib/omniORB/orbcore/giopRope.cc
Mon 14 May 15:10:25 BST 2018
============================
- Initial HTTP transport.
configure.ac
configure
doc/omniORB.pdf
doc/omniORB/index.html
doc/omniORB/omniORB.html
doc/omniORB/omniORB002.html
doc/omniORB/omniORB006.html
doc/omniORB/omniORB007.html
doc/omniORB/omniORB008.html
doc/omniORB/omniORB009.html
doc/omniORB/omniORB010.html
doc/omniORB/omniORB011.html
doc/omniORB/omniORB012.html
doc/omniORB/omniORB013.html
doc/omniORB/omniORB014.html
doc/omniORB/omniORB015.html
doc/omniORB/omniORB016.html
doc/tex/omniORB.tex
include/omniORB4/GNUmakefile.in
include/omniORB4/IOP.h
include/omniORB4/httpContext.h
include/omniORB4/internal/tcpSocket.h
include/omniORB4/minorCode.h
include/omniORB4/omniIOR.h
include/omniORB4/omniURI.h
mk/beforeauto.mk.in
mk/win32.mk
sample.cfg
src/appl/utils/catior/catior.cc
src/lib/omniORB/orbcore/codeSets.cc
src/lib/omniORB/orbcore/constants.cc
src/lib/omniORB/orbcore/dir.mk
src/lib/omniORB/orbcore/http
src/lib/omniORB/orbcore/http/GNUmakefile.in
src/lib/omniORB/orbcore/http/GNUmakefile
src/lib/omniORB/orbcore/http/dir.mk
src/lib/omniORB/orbcore/http/httpActive.cc
src/lib/omniORB/orbcore/http/httpAddress.cc
src/lib/omniORB/orbcore/http/httpAddress.h
src/lib/omniORB/orbcore/http/httpConnection.cc
src/lib/omniORB/orbcore/http/httpConnection.h
src/lib/omniORB/orbcore/http/httpContext.cc
src/lib/omniORB/orbcore/http/httpEndpoint.cc
src/lib/omniORB/orbcore/http/httpEndpoint.h
src/lib/omniORB/orbcore/http/httpTransportImpl.cc
src/lib/omniORB/orbcore/http/httpTransportImpl.h
src/lib/omniORB/orbcore/ior.cc
src/lib/omniORB/orbcore/tcpSocket.cc
src/lib/omniORB/orbcore/uri.cc
Fri 11 May 12:51:29 BST 2018
============================
- Cleaner SSL context; logging tweaks.
configure.ac
configure
include/omniORB4/CORBA_sysdep_trad.h
include/omniORB4/acconfig.h.in
include/omniORB4/omniORB.h
include/omniORB4/sslContext.h
sample.cfg
src/lib/omniORB/orbcore/logIOstream.cc
src/lib/omniORB/orbcore/ssl/sslAddress.cc
src/lib/omniORB/orbcore/ssl/sslConnection.cc
src/lib/omniORB/orbcore/ssl/sslConnection.h
src/lib/omniORB/orbcore/ssl/sslContext.cc
src/lib/omniORB/orbcore/ssl/sslEndpoint.cc
src/lib/omniORB/orbcore/ssl/sslTransportImpl.cc
src/lib/omniORB/orbcore/ssl/sslTransportImpl.h
Fri 11 May 12:18:05 BST 2018
============================
- Doc version updates.
doc/omniORB.pdf
doc/omniORB/index.html
doc/omniORB/omniORB.html
doc/omniORB/omniORB001.html
doc/omniORB/omniORB002.html
doc/omniORB/omniORB003.html
doc/omniORB/omniORB004.html
doc/omniORB/omniORB005.html
doc/omniORB/omniORB006.html
doc/omniORB/omniORB007.html
doc/omniORB/omniORB008.html
doc/omniORB/omniORB009.html
doc/omniORB/omniORB010.html
doc/omniORB/omniORB011.html
doc/omniORB/omniORB012.html
doc/omniORB/omniORB013.html
doc/omniORB/omniORB014.html
doc/omniORB/omniORB015.html
doc/omniORB/omniORB016.html
doc/tex/omniORB.tex
Tue 8 May 18:13:36 BST 2018
============================
- PyPy support.
mk/python.mk
src/tool/omniidl/cxx/idlpython.cc
Thu 26 Apr 15:59:08 BST 2018
============================
- Update library version symbols.
include/omniORB4/omniInternal.h
src/lib/omniORB/dynamic/constants.cc
src/lib/omniORB/orbcore/constants.cc
src/lib/omniORB/python/omniidl_be/cxx/config.py
src/lib/omniORB/python/omniidl_be/cxx/skel/template.py
src/lib/omniORB/python3/omniidl_be/cxx/config.py
src/lib/omniORB/python3/omniidl_be/cxx/skel/template.py
Wed 18 Apr 18:46:35 BST 2018
============================
- Remove throw specifications from options.
include/omniORB4/internal/orbOptions.h
src/lib/omniORB/orbcore/codeSets.cc
src/lib/omniORB/orbcore/corbaOrb.cc
src/lib/omniORB/orbcore/cs-UTF-8.cc
src/lib/omniORB/orbcore/current.cc
src/lib/omniORB/orbcore/dynamicLib.cc
src/lib/omniORB/orbcore/giopBiDir.cc
src/lib/omniORB/orbcore/giopEndpoint.cc
src/lib/omniORB/orbcore/giopRope.cc
src/lib/omniORB/orbcore/giopServer.cc
src/lib/omniORB/orbcore/giopStrand.cc
src/lib/omniORB/orbcore/giopStreamImpl.cc
src/lib/omniORB/orbcore/initRefs.cc
src/lib/omniORB/orbcore/invoker.cc
src/lib/omniORB/orbcore/objectAdapter.cc
src/lib/omniORB/orbcore/omniInternal.cc
src/lib/omniORB/orbcore/omniObjRef.cc
src/lib/omniORB/orbcore/omniTransport.cc
src/lib/omniORB/orbcore/orbOptions.cc
src/lib/omniORB/orbcore/orbOptionsFile.cc
src/lib/omniORB/orbcore/orbOptionsReg.cc
src/lib/omniORB/orbcore/poa.cc
src/lib/omniORB/orbcore/ssl/sslTransportImpl.cc
src/lib/omniORB/orbcore/transportRules.cc
Wed 18 Apr 18:26:27 BST 2018
============================
- Support vast messages (merge from trunk).
include/omniORB4/CORBA_sysdep.h
include/omniORB4/cdrStream.h
include/omniORB4/internal/giopStream.h
include/omniORB4/internal/giopStreamImpl.h
include/omniORB4/internal/orbOptions.h
include/omniORB4/internal/orbParameters.h
include/omniORB4/internal/typecode.h
include/omniORB4/internal/valueTrackerImpl.h
include/omniORB4/omniInternal.h
src/lib/omniORB/dynamic/typecode.cc
src/lib/omniORB/dynamic/valueTracker.cc
src/lib/omniORB/dynamic/valueType.cc
src/lib/omniORB/orbcore/cdrMemoryStream.cc
src/lib/omniORB/orbcore/cdrStreamAdapter.cc
src/lib/omniORB/orbcore/cdrValueChunkStream.cc
src/lib/omniORB/orbcore/giopImpl10.cc
src/lib/omniORB/orbcore/giopImpl11.cc
src/lib/omniORB/orbcore/giopImpl12.cc
src/lib/omniORB/orbcore/giopStream.cc
src/lib/omniORB/orbcore/giopStreamImpl.cc
src/lib/omniORB/orbcore/orbOptions.cc
Wed 18 Apr 18:21:21 BST 2018
============================
- Start of the omniORB 4.3 development branch.
README.FIRST.txt
ReleaseNotes.txt
configure.ac
configure
contrib/RPMs/omniORB.spec
mk/version.mk
|