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
|
# //CycloneDDS
Children: [Domain](#cycloneddsdomain)
CycloneDDS configuration
## //CycloneDDS/Domain
Attributes: [Id](#cycloneddsdomainid)
Children: [Compatibility](#cycloneddsdomaincompatibility), [Discovery](#cycloneddsdomaindiscovery), [General](#cycloneddsdomaingeneral), [Internal](#cycloneddsdomaininternal), [Partitioning](#cycloneddsdomainpartitioning), [SSL](#cycloneddsdomainssl), [Security](#cycloneddsdomainsecurity), [SharedMemory](#cycloneddsdomainsharedmemory), [Sizing](#cycloneddsdomainsizing), [TCP](#cycloneddsdomaintcp), [Threads](#cycloneddsdomainthreads), [Tracing](#cycloneddsdomaintracing)
The General element specifying Domain related settings.
## //CycloneDDS/Domain[@Id]
Text
Domain id this configuration applies to, or "any" if it applies to all domain ids.
The default value is: "any".
### //CycloneDDS/Domain/Compatibility
Children: [AssumeRtiHasPmdEndpoints](#cycloneddsdomaincompatibilityassumertihaspmdendpoints), [ExplicitlyPublishQosSetToDefault](#cycloneddsdomaincompatibilityexplicitlypublishqossettodefault), [ManySocketsMode](#cycloneddsdomaincompatibilitymanysocketsmode), [StandardsConformance](#cycloneddsdomaincompatibilitystandardsconformance)
The Compatibility elements allows specifying various settings related to compatibility with standards and with other DDSI implementations.
#### //CycloneDDS/Domain/Compatibility/AssumeRtiHasPmdEndpoints
Boolean
This option assumes ParticipantMessageData endpoints required by the liveliness protocol are present in RTI participants even when not properly advertised by the participant discovery protocol.
The default value is: "false".
#### //CycloneDDS/Domain/Compatibility/ExplicitlyPublishQosSetToDefault
Boolean
This element specifies whether QoS settings set to default values are explicitly published in the discovery protocol. Implementations are to use the default value for QoS settings not published, which allows a significant reduction of the amount of data that needs to be exchanged for the discovery protocol, but this requires all implementations to adhere to the default values specified by the specifications.
When interoperability is required with an implementation that does not follow the specifications in this regard, setting this option to true will help.
The default value is: "false".
#### //CycloneDDS/Domain/Compatibility/ManySocketsMode
One of: false, true, single, none, many
This option specifies whether a network socket will be created for each domain participant on a host. The specification seems to assume that each participant has a unique address, and setting this option will ensure this to be the case. This is not the default.
Disabling it slightly improves performance and reduces network traffic somewhat. It also causes the set of port numbers needed by Cyclone DDS to become predictable, which may be useful for firewall and NAT configuration.
The default value is: "single".
#### //CycloneDDS/Domain/Compatibility/StandardsConformance
One of: lax, strict, pedantic
This element sets the level of standards conformance of this instance of the Cyclone DDS Service. Stricter conformance typically means less interoperability with other implementations. Currently three modes are defined:
* pedantic: very strictly conform to the specification, ultimately for compliancy testing, but currently of little value because it adheres even to what will most likely turn out to be editing errors in the DDSI standard. Arguably, as long as no errata have been published it is the current text that is in effect, and that is what pedantic currently does.
* strict: a slightly less strict view of the standard than does pedantic: it follows the established behaviour where the standard is obviously in error.
* lax: attempt to provide the smoothest possible interoperability, anticipating future revisions of elements in the standard in areas that other implementations do not adhere to, even though there is no good reason not to.
The default value is: "lax".
### //CycloneDDS/Domain/Discovery
Children: [DSGracePeriod](#cycloneddsdomaindiscoverydsgraceperiod), [DefaultMulticastAddress](#cycloneddsdomaindiscoverydefaultmulticastaddress), [EnableTopicDiscoveryEndpoints](#cycloneddsdomaindiscoveryenabletopicdiscoveryendpoints), [ExternalDomainId](#cycloneddsdomaindiscoveryexternaldomainid), [LeaseDuration](#cycloneddsdomaindiscoveryleaseduration), [MaxAutoParticipantIndex](#cycloneddsdomaindiscoverymaxautoparticipantindex), [ParticipantIndex](#cycloneddsdomaindiscoveryparticipantindex), [Peers](#cycloneddsdomaindiscoverypeers), [Ports](#cycloneddsdomaindiscoveryports), [SPDPInterval](#cycloneddsdomaindiscoveryspdpinterval), [SPDPMulticastAddress](#cycloneddsdomaindiscoveryspdpmulticastaddress), [Tag](#cycloneddsdomaindiscoverytag)
The Discovery element allows specifying various parameters related to the discovery of peers.
#### //CycloneDDS/Domain/Discovery/DSGracePeriod
Number-with-unit
This setting controls for how long endpoints discovered via a Cloud discovery service will survive after the discovery service disappeared, allowing reconnect without loss of data when the discovery service restarts (or another instance takes over).
Valid values are finite durations with an explicit unit or the keyword 'inf' for infinity. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "30 s".
#### //CycloneDDS/Domain/Discovery/DefaultMulticastAddress
Text
This element specifies the default multicast address for all traffic other than participant discovery packets. It defaults to Discovery/SPDPMulticastAddress.
The default value is: "auto".
#### //CycloneDDS/Domain/Discovery/EnableTopicDiscoveryEndpoints
Boolean
This element controls whether the built-in endpoints for topic discovery are created and used to exchange topic discovery information.
The default value is: "false".
#### //CycloneDDS/Domain/Discovery/ExternalDomainId
Text
An override for the domain id, to be used in discovery and for determining the port number mapping. This allows creating multiple domains in a single process while making them appear as a single domain on the network. The value "default" disables the override.
The default value is: "default".
#### //CycloneDDS/Domain/Discovery/LeaseDuration
Number-with-unit
This setting controls the default participant lease duration.
The unit must be specified explicitly. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "10 s".
#### //CycloneDDS/Domain/Discovery/MaxAutoParticipantIndex
Integer
This element specifies the maximum DDSI participant index selected by this instance of the Cyclone DDS service if the Discovery/ParticipantIndex is "auto".
The default value is: "9".
#### //CycloneDDS/Domain/Discovery/ParticipantIndex
Text
This element specifies the DDSI participant index used by this instance of the Cyclone DDS service for discovery purposes. Only one such participant id is used, independent of the number of actual DomainParticipants on the node. It is either:
* auto: which will attempt to automatically determine an available participant index (see also Discovery/MaxAutoParticipantIndex), or
* a non-negative integer less than 120, or
* none:, which causes it to use arbitrary port numbers for unicast sockets which entirely removes the constraints on the participant index but makes unicast discovery impossible.
The default is auto. The participant index is part of the port number calculation and if predictable port numbers are needed and fixing the participant index has no adverse effects, it is recommended that the second be option be used.
The default value is: "none".
#### //CycloneDDS/Domain/Discovery/Peers
Children: [Peer](#cycloneddsdomaindiscoverypeerspeer)
This element statically configures addresses for discovery.
##### //CycloneDDS/Domain/Discovery/Peers/Peer
Attributes: [Address](#cycloneddsdomaindiscoverypeerspeeraddress)
This element statically configures an addresses for discovery.
##### //CycloneDDS/Domain/Discovery/Peers/Peer[@Address]
Text
This element specifies an IP address to which discovery packets must be sent, in addition to the default multicast address (see also General/AllowMulticast). Both a hostnames and a numerical IP address is accepted; the hostname or IP address may be suffixed with :PORT to explicitly set the port to which it must be sent. Multiple Peers may be specified.
The default value is: "".
#### //CycloneDDS/Domain/Discovery/Ports
Children: [Base](#cycloneddsdomaindiscoveryportsbase), [DomainGain](#cycloneddsdomaindiscoveryportsdomaingain), [MulticastDataOffset](#cycloneddsdomaindiscoveryportsmulticastdataoffset), [MulticastMetaOffset](#cycloneddsdomaindiscoveryportsmulticastmetaoffset), [ParticipantGain](#cycloneddsdomaindiscoveryportsparticipantgain), [UnicastDataOffset](#cycloneddsdomaindiscoveryportsunicastdataoffset), [UnicastMetaOffset](#cycloneddsdomaindiscoveryportsunicastmetaoffset)
The Ports element allows specifying various parameters related to the port numbers used for discovery. These all have default values specified by the DDSI 2.1 specification and rarely need to be changed.
##### //CycloneDDS/Domain/Discovery/Ports/Base
Integer
This element specifies the base port number (refer to the DDSI 2.1 specification, section 9.6.1, constant PB).
The default value is: "7400".
##### //CycloneDDS/Domain/Discovery/Ports/DomainGain
Integer
This element specifies the domain gain, relating domain ids to sets of port numbers (refer to the DDSI 2.1 specification, section 9.6.1, constant DG).
The default value is: "250".
##### //CycloneDDS/Domain/Discovery/Ports/MulticastDataOffset
Integer
This element specifies the port number for multicast data traffic (refer to the DDSI 2.1 specification, section 9.6.1, constant d2).
The default value is: "1".
##### //CycloneDDS/Domain/Discovery/Ports/MulticastMetaOffset
Integer
This element specifies the port number for multicast meta traffic (refer to the DDSI 2.1 specification, section 9.6.1, constant d0).
The default value is: "0".
##### //CycloneDDS/Domain/Discovery/Ports/ParticipantGain
Integer
This element specifies the participant gain, relating p0, participant index to sets of port numbers (refer to the DDSI 2.1 specification, section 9.6.1, constant PG).
The default value is: "2".
##### //CycloneDDS/Domain/Discovery/Ports/UnicastDataOffset
Integer
This element specifies the port number for unicast data traffic (refer to the DDSI 2.1 specification, section 9.6.1, constant d3).
The default value is: "11".
##### //CycloneDDS/Domain/Discovery/Ports/UnicastMetaOffset
Integer
This element specifies the port number for unicast meta traffic (refer to the DDSI 2.1 specification, section 9.6.1, constant d1).
The default value is: "10".
#### //CycloneDDS/Domain/Discovery/SPDPInterval
Number-with-unit
This element specifies the interval between spontaneous transmissions of participant discovery packets.
The unit must be specified explicitly. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "30 s".
#### //CycloneDDS/Domain/Discovery/SPDPMulticastAddress
Text
This element specifies the multicast address that is used as the destination for the participant discovery packets. In IPv4 mode the default is the (standardised) 239.255.0.1, in IPv6 mode it becomes ff02::ffff:239.255.0.1, which is a non-standardised link-local multicast address.
The default value is: "239.255.0.1".
#### //CycloneDDS/Domain/Discovery/Tag
Text
String extension for domain id that remote participants must match to be discovered.
The default value is: "".
### //CycloneDDS/Domain/General
Children: [AllowMulticast](#cycloneddsdomaingeneralallowmulticast), [DontRoute](#cycloneddsdomaingeneraldontroute), [EnableMulticastLoopback](#cycloneddsdomaingeneralenablemulticastloopback), [EntityAutoNaming](#cycloneddsdomaingeneralentityautonaming), [ExternalNetworkAddress](#cycloneddsdomaingeneralexternalnetworkaddress), [ExternalNetworkMask](#cycloneddsdomaingeneralexternalnetworkmask), [FragmentSize](#cycloneddsdomaingeneralfragmentsize), [Interfaces](#cycloneddsdomaingeneralinterfaces), [MaxMessageSize](#cycloneddsdomaingeneralmaxmessagesize), [MaxRexmitMessageSize](#cycloneddsdomaingeneralmaxrexmitmessagesize), [MulticastRecvNetworkInterfaceAddresses](#cycloneddsdomaingeneralmulticastrecvnetworkinterfaceaddresses), [MulticastTimeToLive](#cycloneddsdomaingeneralmulticasttimetolive), [RedundantNetworking](#cycloneddsdomaingeneralredundantnetworking), [Transport](#cycloneddsdomaingeneraltransport), [UseIPv6](#cycloneddsdomaingeneraluseipv)
The General element specifies overall Cyclone DDS service settings.
#### //CycloneDDS/Domain/General/AllowMulticast
One of:
* Keyword: default
* Comma-separated list of: false, spdp, asm, ssm, true
This element controls whether Cyclone DDS uses multicasts for data traffic.
It is a comma-separated list of some of the following keywords: "spdp", "asm", "ssm", or either of "false" or "true", or "default".
* spdp: enables the use of ASM (any-source multicast) for participant discovery, joining the multicast group on the discovery socket, transmitting SPDP messages to this group, but never advertising nor using any multicast address in any discovery message, thus forcing unicast communications for all endpoint discovery and user data.
* asm: enables the use of ASM for all traffic, including receiving SPDP but not transmitting SPDP messages via multicast
* ssm: enables the use of SSM (source-specific multicast) for all non-SPDP traffic (if supported)
When set to "false" all multicasting is disabled. The default, "true" enables full use of multicasts. Listening for multicasts can be controlled by General/MulticastRecvNetworkInterfaceAddresses.
"default" maps on spdp if the network is a WiFi network, on true if it is a wired network
The default value is: "default".
#### //CycloneDDS/Domain/General/DontRoute
Boolean
This element allows setting the SO\_DONTROUTE option for outgoing packets, to bypass the local routing tables. This is generally useful only when the routing tables cannot be trusted, which is highly unusual.
The default value is: "false".
#### //CycloneDDS/Domain/General/EnableMulticastLoopback
Boolean
This element specifies whether Cyclone DDS allows IP multicast packets to be visible to all DDSI participants in the same node, including itself. It must be "true" for intra-node multicast communications, but if a node runs only a single Cyclone DDS service and does not host any other DDSI-capable programs, it should be set to "false" for improved performance.
The default value is: "true".
#### //CycloneDDS/Domain/General/EntityAutoNaming
Attributes: [seed](#cycloneddsdomaingeneralentityautonamingseed)
One of: empty, fancy
This element specifies the entity autonaming mode. By default set to 'empty' which means no name will be set (but you can still use dds\_qset\_entity\_name). When set to 'fancy' participants, publishers, subscribers, writers and readers will get randomly generated names. An autonamed entity will share a 3-letter prefix with their parent entity.
The default value is: "empty".
#### //CycloneDDS/Domain/General/EntityAutoNaming[@seed]
Text
Provide an initial seed for the entity naming. Your string will be hashed to provided the random state. When provided the same sequence of names is generated every run. If you create your entities in the same order this will ensure they are the same between runs. If you run multiple nodes set this via environment variable to ensure every node generates unique names. When left empty (the default) a random starting seed is chosen.
The default value is: "".
#### //CycloneDDS/Domain/General/ExternalNetworkAddress
Text
This element allows explicitly overruling the network address Cyclone DDS advertises in the discovery protocol, which by default is the address of the preferred network interface (General/NetworkInterfaceAddress), to allow Cyclone DDS to communicate across a Network Address Translation (NAT) device.
The default value is: "auto".
#### //CycloneDDS/Domain/General/ExternalNetworkMask
Text
This element specifies the network mask of the external network address. This element is relevant only when an external network address (General/ExternalNetworkAddress) is explicitly configured. In this case locators received via the discovery protocol that are within the same external subnet (as defined by this mask) will be translated to an internal address by replacing the network portion of the external address with the corresponding portion of the preferred network interface address. This option is IPv4-only.
The default value is: "0.0.0.0".
#### //CycloneDDS/Domain/General/FragmentSize
Number-with-unit
This element specifies the size of DDSI sample fragments generated by Cyclone DDS. Samples larger than FragmentSize are fragmented into fragments of FragmentSize bytes each, except the last one, which may be smaller. The DDSI spec mandates a minimum fragment size of 1025 bytes, but Cyclone DDS will do whatever size is requested, accepting fragments of which the size is at least the minimum of 1025 and FragmentSize.
The unit must be specified explicitly. Recognised units: B (bytes), kB & KiB (2^10 bytes), MB & MiB (2^20 bytes), GB & GiB (2^30 bytes).
The default value is: "1344 B".
#### //CycloneDDS/Domain/General/Interfaces
Children: [NetworkInterface](#cycloneddsdomaingeneralinterfacesnetworkinterface)
This element specifies the network interfaces for use by Cyclone DDS. Multiple interfaces can be specified with an assigned priority. The list in use will be sorted by priority. If interfaces have an equal priority the specification order will be preserved.
##### //CycloneDDS/Domain/General/Interfaces/NetworkInterface
Attributes: [address](#cycloneddsdomaingeneralinterfacesnetworkinterfaceaddress), [autodetermine](#cycloneddsdomaingeneralinterfacesnetworkinterfaceautodetermine), [multicast](#cycloneddsdomaingeneralinterfacesnetworkinterfacemulticast), [name](#cycloneddsdomaingeneralinterfacesnetworkinterfacename), [prefer_multicast](#cycloneddsdomaingeneralinterfacesnetworkinterfaceprefermulticast), [presence_required](#cycloneddsdomaingeneralinterfacesnetworkinterfacepresencerequired), [priority](#cycloneddsdomaingeneralinterfacesnetworkinterfacepriority)
This element defines a network interface. You can set autodetermine="true" to autoselect the interface CycloneDDS deems to be the highest quality. If autodetermine="false" (the default), you must specify the name and/or address attribute. If you specify both they must match the same interface.
##### //CycloneDDS/Domain/General/Interfaces/NetworkInterface[@address]
Text
This attribute specifies the address of the interface. With ipv4 allows matching on network part if host part is set to zero.
The default value is: "".
##### //CycloneDDS/Domain/General/Interfaces/NetworkInterface[@autodetermine]
Text
If set to "true" an interface is automatically selected. Specifying a name or an address when automatic is set is considered an error.
The default value is: "false".
##### //CycloneDDS/Domain/General/Interfaces/NetworkInterface[@multicast]
Text
This attribute specifies the whether the interface should use multicast. On its default setting 'default' it will use the value as return by the operating system. If set to 'true' the interface will be assumed to be multicast capable even when the interface flags returned by the operating system state it is not (this provides a workaround for some platforms). If set to 'false' the interface will never be used for multicast.
The default value is: "default".
##### //CycloneDDS/Domain/General/Interfaces/NetworkInterface[@name]
Text
This attribute specifies the name of the interface.
The default value is: "".
##### //CycloneDDS/Domain/General/Interfaces/NetworkInterface[@prefer_multicast]
Boolean
When false (default) Cyclone DDS uses unicast for data whenever there a single unicast suffices. Setting this to true makes it prefer multicasting data, falling back to unicast only when no multicast is available.
The default value is: "false".
##### //CycloneDDS/Domain/General/Interfaces/NetworkInterface[@presence_required]
Boolean
By default all specified network interfaces must be present, if they are missing Cyclone will refuse to start. By explicitly setting this setting for an interface you can instruct Cyclone to simply ignore that interface if it is not present.
The default value is: "true".
##### //CycloneDDS/Domain/General/Interfaces/NetworkInterface[@priority]
Text
This attribute specifies the interface priority (decimal integer or default). The default value for loopback interfaces is 2, for all other interfaces it is 0.
The default value is: "default".
#### //CycloneDDS/Domain/General/MaxMessageSize
Number-with-unit
This element specifies the maximum size of the UDP payload that Cyclone DDS will generate. Cyclone DDS will try to maintain this limit within the bounds of the DDSI specification, which means that in some cases (especially for very low values of MaxMessageSize) larger payloads may sporadically be observed (currently up to 1192 B).
On some networks it may be necessary to set this item to keep the packetsize below the MTU to prevent IP fragmentation.
The unit must be specified explicitly. Recognised units: B (bytes), kB & KiB (2^10 bytes), MB & MiB (2^20 bytes), GB & GiB (2^30 bytes).
The default value is: "14720 B".
#### //CycloneDDS/Domain/General/MaxRexmitMessageSize
Number-with-unit
This element specifies the maximum size of the UDP payload that Cyclone DDS will generate for a retransmit. Cyclone DDS will try to maintain this limit within the bounds of the DDSI specification, which means that in some cases (especially for very low values) larger payloads may sporadically be observed (currently up to 1192 B).
On some networks it may be necessary to set this item to keep the packetsize below the MTU to prevent IP fragmentation.
The unit must be specified explicitly. Recognised units: B (bytes), kB & KiB (2^10 bytes), MB & MiB (2^20 bytes), GB & GiB (2^30 bytes).
The default value is: "1456 B".
#### //CycloneDDS/Domain/General/MulticastRecvNetworkInterfaceAddresses
Text
This element specifies on which network interfaces Cyclone DDS listens to multicasts. The following options are available:
* all: listen for multicasts on all multicast-capable interfaces; or
* any: listen for multicasts on the operating system default interface; or
* preferred: listen for multicasts on the preferred interface (General/Interface/NetworkInterface with highest priority); or
* none: does not listen for multicasts on any interface; or
* a comma-separated list of network addresses: configures Cyclone DDS to listen for multicasts on all of the listed addresses.
If Cyclone DDS is in IPv6 mode and the address of the preferred network interface is a link-local address, "all" is treated as a synonym for "preferred" and a comma-separated list is treated as "preferred" if it contains the preferred interface and as "none" if not.
The default value is: "preferred".
#### //CycloneDDS/Domain/General/MulticastTimeToLive
Integer
This element specifies the time-to-live setting for outgoing multicast packets.
The default value is: "32".
#### //CycloneDDS/Domain/General/RedundantNetworking
Boolean
When enabled, use selected network interfaces in parallel for redundancy.
The default value is: "false".
#### //CycloneDDS/Domain/General/Transport
One of: default, udp, udp6, tcp, tcp6, raweth
This element allows selecting the transport to be used (udp, udp6, tcp, tcp6, raweth)
The default value is: "default".
#### //CycloneDDS/Domain/General/UseIPv6
One of: false, true, default
Deprecated (use Transport instead)
The default value is: "default".
### //CycloneDDS/Domain/Internal
Children: [AccelerateRexmitBlockSize](#cycloneddsdomaininternalacceleraterexmitblocksize), [AckDelay](#cycloneddsdomaininternalackdelay), [AutoReschedNackDelay](#cycloneddsdomaininternalautoreschednackdelay), [BuiltinEndpointSet](#cycloneddsdomaininternalbuiltinendpointset), [BurstSize](#cycloneddsdomaininternalburstsize), [ControlTopic](#cycloneddsdomaininternalcontroltopic), [DDSI2DirectMaxThreads](#cycloneddsdomaininternalddsidirectmaxthreads), [DefragReliableMaxSamples](#cycloneddsdomaininternaldefragreliablemaxsamples), [DefragUnreliableMaxSamples](#cycloneddsdomaininternaldefragunreliablemaxsamples), [DeliveryQueueMaxSamples](#cycloneddsdomaininternaldeliveryqueuemaxsamples), [EnableExpensiveChecks](#cycloneddsdomaininternalenableexpensivechecks), [GenerateKeyhash](#cycloneddsdomaininternalgeneratekeyhash), [HeartbeatInterval](#cycloneddsdomaininternalheartbeatinterval), [LateAckMode](#cycloneddsdomaininternallateackmode), [LivelinessMonitoring](#cycloneddsdomaininternallivelinessmonitoring), [MaxParticipants](#cycloneddsdomaininternalmaxparticipants), [MaxQueuedRexmitBytes](#cycloneddsdomaininternalmaxqueuedrexmitbytes), [MaxQueuedRexmitMessages](#cycloneddsdomaininternalmaxqueuedrexmitmessages), [MaxSampleSize](#cycloneddsdomaininternalmaxsamplesize), [MeasureHbToAckLatency](#cycloneddsdomaininternalmeasurehbtoacklatency), [MonitorPort](#cycloneddsdomaininternalmonitorport), [MultipleReceiveThreads](#cycloneddsdomaininternalmultiplereceivethreads), [NackDelay](#cycloneddsdomaininternalnackdelay), [PreEmptiveAckDelay](#cycloneddsdomaininternalpreemptiveackdelay), [PrimaryReorderMaxSamples](#cycloneddsdomaininternalprimaryreordermaxsamples), [PrioritizeRetransmit](#cycloneddsdomaininternalprioritizeretransmit), [RediscoveryBlacklistDuration](#cycloneddsdomaininternalrediscoveryblacklistduration), [RetransmitMerging](#cycloneddsdomaininternalretransmitmerging), [RetransmitMergingPeriod](#cycloneddsdomaininternalretransmitmergingperiod), [RetryOnRejectBestEffort](#cycloneddsdomaininternalretryonrejectbesteffort), [SPDPResponseMaxDelay](#cycloneddsdomaininternalspdpresponsemaxdelay), [ScheduleTimeRounding](#cycloneddsdomaininternalscheduletimerounding), [SecondaryReorderMaxSamples](#cycloneddsdomaininternalsecondaryreordermaxsamples), [SocketReceiveBufferSize](#cycloneddsdomaininternalsocketreceivebuffersize), [SocketSendBufferSize](#cycloneddsdomaininternalsocketsendbuffersize), [SquashParticipants](#cycloneddsdomaininternalsquashparticipants), [SynchronousDeliveryLatencyBound](#cycloneddsdomaininternalsynchronousdeliverylatencybound), [SynchronousDeliveryPriorityThreshold](#cycloneddsdomaininternalsynchronousdeliveryprioritythreshold), [Test](#cycloneddsdomaininternaltest), [UnicastResponseToSPDPMessages](#cycloneddsdomaininternalunicastresponsetospdpmessages), [UseMulticastIfMreqn](#cycloneddsdomaininternalusemulticastifmreqn), [Watermarks](#cycloneddsdomaininternalwatermarks), [WriterLingerDuration](#cycloneddsdomaininternalwriterlingerduration)
The Internal elements deal with a variety of settings that evolving and that are not necessarily fully supported. For the vast majority of the Internal settings, the functionality per-se is supported, but the right to change the way the options control the functionality is reserved. This includes renaming or moving options.
#### //CycloneDDS/Domain/Internal/AccelerateRexmitBlockSize
Integer
Proxy readers that are assumed to sill be retrieving historical data get this many samples retransmitted when they NACK something, even if some of these samples have sequence numbers outside the set covered by the NACK.
The default value is: "0".
#### //CycloneDDS/Domain/Internal/AckDelay
Number-with-unit
This setting controls the delay between sending identical acknowledgements.
The unit must be specified explicitly. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "10 ms".
#### //CycloneDDS/Domain/Internal/AutoReschedNackDelay
Number-with-unit
This setting controls the interval with which a reader will continue NACK'ing missing samples in the absence of a response from the writer, as a protection mechanism against writers incorrectly stopping the sending of HEARTBEAT messages.
Valid values are finite durations with an explicit unit or the keyword 'inf' for infinity. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "3 s".
#### //CycloneDDS/Domain/Internal/BuiltinEndpointSet
One of: full, writers, minimal
This element controls which participants will have which built-in endpoints for the discovery and liveliness protocols. Valid values are:
* full: all participants have all endpoints;
* writers: all participants have the writers, but just one has the readers;
* minimal: only one participant has built-in endpoints.
The default is writers, as this is thought to be compliant and reasonably efficient. Minimal may or may not be compliant but is most efficient, and full is inefficient but certain to be compliant. See also Internal/ConservativeBuiltinReaderStartup.
The default value is: "writers".
#### //CycloneDDS/Domain/Internal/BurstSize
Children: [MaxInitTransmit](#cycloneddsdomaininternalburstsizemaxinittransmit), [MaxRexmit](#cycloneddsdomaininternalburstsizemaxrexmit)
Setting for controlling the size of transmit bursts.
##### //CycloneDDS/Domain/Internal/BurstSize/MaxInitTransmit
Number-with-unit
This element specifies how much more than the (presumed or discovered) receive buffer size may be sent when transmitting a sample for the first time, expressed as a percentage; the remainder will then be handled via retransmits. Usually the receivers can keep up with transmitter, at least on average, and so generally it is better to hope for the best and recover. Besides, the retransmits will be unicast, and so any multicast advantage will be lost as well.
The unit must be specified explicitly. Recognised units: B (bytes), kB & KiB (2^10 bytes), MB & MiB (2^20 bytes), GB & GiB (2^30 bytes).
The default value is: "4294967295".
##### //CycloneDDS/Domain/Internal/BurstSize/MaxRexmit
Number-with-unit
This element specifies the amount of data to be retransmitted in response to one NACK.
The unit must be specified explicitly. Recognised units: B (bytes), kB & KiB (2^10 bytes), MB & MiB (2^20 bytes), GB & GiB (2^30 bytes).
The default value is: "1 MiB".
#### //CycloneDDS/Domain/Internal/ControlTopic
The ControlTopic element allows configured whether Cyclone DDS provides a special control interface via a predefined topic or not.
#### //CycloneDDS/Domain/Internal/DDSI2DirectMaxThreads
Integer
This element sets the maximum number of extra threads for an experimental, undocumented and unsupported direct mode.
The default value is: "1".
#### //CycloneDDS/Domain/Internal/DefragReliableMaxSamples
Integer
This element sets the maximum number of samples that can be defragmented simultaneously for a reliable writer. This has to be large enough to handle retransmissions of historical data in addition to new samples.
The default value is: "16".
#### //CycloneDDS/Domain/Internal/DefragUnreliableMaxSamples
Integer
This element sets the maximum number of samples that can be defragmented simultaneously for a best-effort writers.
The default value is: "4".
#### //CycloneDDS/Domain/Internal/DeliveryQueueMaxSamples
Integer
This element controls the maximum size of a delivery queue, expressed in samples. Once a delivery queue is full, incoming samples destined for that queue are dropped until space becomes available again.
The default value is: "256".
#### //CycloneDDS/Domain/Internal/EnableExpensiveChecks
One of:
* Comma-separated list of: whc, rhc, xevent, all
* Or empty
This element enables expensive checks in builds with assertions enabled and is ignored otherwise. Recognised categories are:
* whc: writer history cache checking
* rhc: reader history cache checking
* xevent: xevent checking
In addition, there is the keyword all that enables all checks.
The default value is: "".
#### //CycloneDDS/Domain/Internal/GenerateKeyhash
Boolean
When true, include keyhashes in outgoing data for topics with keys.
The default value is: "false".
#### //CycloneDDS/Domain/Internal/HeartbeatInterval
Attributes: [max](#cycloneddsdomaininternalheartbeatintervalmax), [min](#cycloneddsdomaininternalheartbeatintervalmin), [minsched](#cycloneddsdomaininternalheartbeatintervalminsched)
Number-with-unit
This element allows configuring the base interval for sending writer heartbeats and the bounds within which it can vary.
Valid values are finite durations with an explicit unit or the keyword 'inf' for infinity. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "100 ms".
#### //CycloneDDS/Domain/Internal/HeartbeatInterval[@max]
Number-with-unit
This attribute sets the maximum interval for periodic heartbeats.
Valid values are finite durations with an explicit unit or the keyword 'inf' for infinity. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "8 s".
#### //CycloneDDS/Domain/Internal/HeartbeatInterval[@min]
Number-with-unit
This attribute sets the minimum interval that must have passed since the most recent heartbeat from a writer, before another asynchronous (not directly related to writing) will be sent.
Valid values are finite durations with an explicit unit or the keyword 'inf' for infinity. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "5 ms".
#### //CycloneDDS/Domain/Internal/HeartbeatInterval[@minsched]
Number-with-unit
This attribute sets the minimum interval for periodic heartbeats. Other events may still cause heartbeats to go out.
Valid values are finite durations with an explicit unit or the keyword 'inf' for infinity. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "20 ms".
#### //CycloneDDS/Domain/Internal/LateAckMode
Boolean
Ack a sample only when it has been delivered, instead of when committed to delivering it.
The default value is: "false".
#### //CycloneDDS/Domain/Internal/LivelinessMonitoring
Attributes: [Interval](#cycloneddsdomaininternallivelinessmonitoringinterval), [StackTraces](#cycloneddsdomaininternallivelinessmonitoringstacktraces)
Boolean
This element controls whether or not implementation should internally monitor its own liveliness. If liveliness monitoring is enabled, stack traces can be dumped automatically when some thread appears to have stopped making progress.
The default value is: "false".
#### //CycloneDDS/Domain/Internal/LivelinessMonitoring[@Interval]
Number-with-unit
This element controls the interval at which to check whether threads have been making progress.
The unit must be specified explicitly. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "1s".
#### //CycloneDDS/Domain/Internal/LivelinessMonitoring[@StackTraces]
Boolean
This element controls whether or not to write stack traces to the DDSI2 trace when a thread fails to make progress (on select platforms only).
The default value is: "true".
#### //CycloneDDS/Domain/Internal/MaxParticipants
Integer
This elements configures the maximum number of DCPS domain participants this Cyclone DDS instance is willing to service. 0 is unlimited.
The default value is: "0".
#### //CycloneDDS/Domain/Internal/MaxQueuedRexmitBytes
Number-with-unit
This setting limits the maximum number of bytes queued for retransmission. The default value of 0 is unlimited unless an AuxiliaryBandwidthLimit has been set, in which case it becomes NackDelay \* AuxiliaryBandwidthLimit. It must be large enough to contain the largest sample that may need to be retransmitted.
The unit must be specified explicitly. Recognised units: B (bytes), kB & KiB (2^10 bytes), MB & MiB (2^20 bytes), GB & GiB (2^30 bytes).
The default value is: "512 kB".
#### //CycloneDDS/Domain/Internal/MaxQueuedRexmitMessages
Integer
This settings limits the maximum number of samples queued for retransmission.
The default value is: "200".
#### //CycloneDDS/Domain/Internal/MaxSampleSize
Number-with-unit
This setting controls the maximum (CDR) serialised size of samples that Cyclone DDS will forward in either direction. Samples larger than this are discarded with a warning.
The unit must be specified explicitly. Recognised units: B (bytes), kB & KiB (2^10 bytes), MB & MiB (2^20 bytes), GB & GiB (2^30 bytes).
The default value is: "2147483647 B".
#### //CycloneDDS/Domain/Internal/MeasureHbToAckLatency
Boolean
This element enables heartbeat-to-ack latency among Cyclone DDS services by prepending timestamps to Heartbeat and AckNack messages and calculating round trip times. This is non-standard behaviour. The measured latencies are quite noisy and are currently not used anywhere.
The default value is: "false".
#### //CycloneDDS/Domain/Internal/MonitorPort
Integer
This element allows configuring a service that dumps a text description of part the internal state to TCP clients. By default (-1), this is disabled; specifying 0 means a kernel-allocated port is used; a positive number is used as the TCP port number.
The default value is: "-1".
#### //CycloneDDS/Domain/Internal/MultipleReceiveThreads
Attributes: [maxretries](#cycloneddsdomaininternalmultiplereceivethreadsmaxretries)
One of: false, true, default
This element controls whether all traffic is handled by a single receive thread (false) or whether multiple receive threads may be used to improve latency (true). By default it is disabled on Windows because it appears that one cannot count on being able to send packets to oneself, which is necessary to stop the thread during shutdown. Currently multiple receive threads are only used for connectionless transport (e.g., UDP) and ManySocketsMode not set to single (the default).
The default value is: "default".
#### //CycloneDDS/Domain/Internal/MultipleReceiveThreads[@maxretries]
Integer
Receive threads dedicated to a single socket can only be triggered for termination by sending a packet. Reception of any packet will do, so termination failure due to packet loss is exceedingly unlikely, but to eliminate all risks, it will retry as many times as specified by this attribute before aborting.
The default value is: "4294967295".
#### //CycloneDDS/Domain/Internal/NackDelay
Number-with-unit
This setting controls the delay between receipt of a HEARTBEAT indicating missing samples and a NACK (ignored when the HEARTBEAT requires an answer). However, no NACK is sent if a NACK had been scheduled already for a response earlier than the delay requests: then that NACK will incorporate the latest information.
The unit must be specified explicitly. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "100 ms".
#### //CycloneDDS/Domain/Internal/PreEmptiveAckDelay
Number-with-unit
This setting controls the delay between the discovering a remote writer and sending a pre-emptive AckNack to discover the range of data available.
The unit must be specified explicitly. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "10 ms".
#### //CycloneDDS/Domain/Internal/PrimaryReorderMaxSamples
Integer
This element sets the maximum size in samples of a primary re-order administration. Each proxy writer has one primary re-order administration to buffer the packet flow in case some packets arrive out of order. Old samples are forwarded to secondary re-order administrations associated with readers in need of historical data.
The default value is: "128".
#### //CycloneDDS/Domain/Internal/PrioritizeRetransmit
Boolean
This element controls whether retransmits are prioritized over new data, speeding up recovery.
The default value is: "true".
#### //CycloneDDS/Domain/Internal/RediscoveryBlacklistDuration
Attributes: [enforce](#cycloneddsdomaininternalrediscoveryblacklistdurationenforce)
Number-with-unit
This element controls for how long a remote participant that was previously deleted will remain on a blacklist to prevent rediscovery, giving the software on a node time to perform any cleanup actions it needs to do. To some extent this delay is required internally by Cyclone DDS, but in the default configuration with the 'enforce' attribute set to false, Cyclone DDS will reallow rediscovery as soon as it has cleared its internal administration. Setting it to too small a value may result in the entry being pruned from the blacklist before Cyclone DDS is ready, it is therefore recommended to set it to at least several seconds.
Valid values are finite durations with an explicit unit or the keyword 'inf' for infinity. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "0s".
#### //CycloneDDS/Domain/Internal/RediscoveryBlacklistDuration[@enforce]
Boolean
This attribute controls whether the configured time during which recently deleted participants will not be rediscovered (i.e., "black listed") is enforced and following complete removal of the participant in Cyclone DDS, or whether it can be rediscovered earlier provided all traces of that participant have been removed already.
The default value is: "false".
#### //CycloneDDS/Domain/Internal/RetransmitMerging
One of: never, adaptive, always
This elements controls the addressing and timing of retransmits. Possible values are:
* never: retransmit only to the NACK-ing reader;
* adaptive: attempt to combine retransmits needed for reliability, but send historical (transient-local) data to the requesting reader only;
* always: do not distinguish between different causes, always try to merge.
The default is never. See also Internal/RetransmitMergingPeriod.
The default value is: "never".
#### //CycloneDDS/Domain/Internal/RetransmitMergingPeriod
Number-with-unit
This setting determines the size of the time window in which a NACK of some sample is ignored because a retransmit of that sample has been multicasted too recently. This setting has no effect on unicasted retransmits.
See also Internal/RetransmitMerging.
The unit must be specified explicitly. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "5 ms".
#### //CycloneDDS/Domain/Internal/RetryOnRejectBestEffort
Boolean
Whether or not to locally retry pushing a received best-effort sample into the reader caches when resource limits are reached.
The default value is: "false".
#### //CycloneDDS/Domain/Internal/SPDPResponseMaxDelay
Number-with-unit
Maximum pseudo-random delay in milliseconds between discovering aremote participant and responding to it.
The unit must be specified explicitly. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "0 ms".
#### //CycloneDDS/Domain/Internal/ScheduleTimeRounding
Number-with-unit
This setting allows the timing of scheduled events to be rounded up so that more events can be handled in a single cycle of the event queue. The default is 0 and causes no rounding at all, i.e. are scheduled exactly, whereas a value of 10ms would mean that events are rounded up to the nearest 10 milliseconds.
The unit must be specified explicitly. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "0 ms".
#### //CycloneDDS/Domain/Internal/SecondaryReorderMaxSamples
Integer
This element sets the maximum size in samples of a secondary re-order administration. The secondary re-order administration is per reader in need of historical data.
The default value is: "128".
#### //CycloneDDS/Domain/Internal/SocketReceiveBufferSize
Attributes: [max](#cycloneddsdomaininternalsocketreceivebuffersizemax), [min](#cycloneddsdomaininternalsocketreceivebuffersizemin)
The settings in this element control the size of the socket receive buffers. The operating system provides some size receive buffer upon creation of the socket, this option can be used to increase the size of the buffer beyond that initially provided by the operating system. If the buffer size cannot be increased to the requested minimum size, an error is reported.
The default setting requests a buffer size of 1MiB but accepts whatever is available after that.
#### //CycloneDDS/Domain/Internal/SocketReceiveBufferSize[@max]
Number-with-unit
This sets the size of the socket receive buffer to request, with the special value of "default" indicating that it should try to satisfy the minimum buffer size. If both are at "default", it will request 1MiB and accept anything. If the maximum is set to less than the minimum, it is ignored.
The unit must be specified explicitly. Recognised units: B (bytes), kB & KiB (2^10 bytes), MB & MiB (2^20 bytes), GB & GiB (2^30 bytes).
The default value is: "default".
#### //CycloneDDS/Domain/Internal/SocketReceiveBufferSize[@min]
Number-with-unit
This sets the minimum acceptable socket receive buffer size, with the special value "default" indicating that whatever is available is acceptable.
The unit must be specified explicitly. Recognised units: B (bytes), kB & KiB (2^10 bytes), MB & MiB (2^20 bytes), GB & GiB (2^30 bytes).
The default value is: "default".
#### //CycloneDDS/Domain/Internal/SocketSendBufferSize
Attributes: [max](#cycloneddsdomaininternalsocketsendbuffersizemax), [min](#cycloneddsdomaininternalsocketsendbuffersizemin)
The settings in this element control the size of the socket send buffers. The operating system provides some size send buffer upon creation of the socket, this option can be used to increase the size of the buffer beyond that initially provided by the operating system. If the buffer size cannot be increased to the requested minimum size, an error is reported.
The default setting requires a buffer of at least 64KiB.
#### //CycloneDDS/Domain/Internal/SocketSendBufferSize[@max]
Number-with-unit
This sets the size of the socket send buffer to request, with the special value of "default" indicating that it should try to satisfy the minimum buffer size. If both are at "default", it will use whatever is the system default. If the maximum is set to less than the minimum, it is ignored.
The unit must be specified explicitly. Recognised units: B (bytes), kB & KiB (2^10 bytes), MB & MiB (2^20 bytes), GB & GiB (2^30 bytes).
The default value is: "default".
#### //CycloneDDS/Domain/Internal/SocketSendBufferSize[@min]
Number-with-unit
This sets the minimum acceptable socket send buffer size, with the special value "default" indicating that whatever is available is acceptable.
The unit must be specified explicitly. Recognised units: B (bytes), kB & KiB (2^10 bytes), MB & MiB (2^20 bytes), GB & GiB (2^30 bytes).
The default value is: "64 KiB".
#### //CycloneDDS/Domain/Internal/SquashParticipants
Boolean
This element controls whether Cyclone DDS advertises all the domain participants it serves in DDSI (when set to false), or rather only one domain participant (the one corresponding to the Cyclone DDS process; when set to true). In the latter case Cyclone DDS becomes the virtual owner of all readers and writers of all domain participants, dramatically reducing discovery traffic (a similar effect can be obtained by setting Internal/BuiltinEndpointSet to "minimal" but with less loss of information).
The default value is: "false".
#### //CycloneDDS/Domain/Internal/SynchronousDeliveryLatencyBound
Number-with-unit
This element controls whether samples sent by a writer with QoS settings transport\_priority >= SynchronousDeliveryPriorityThreshold and a latency\_budget at most this element's value will be delivered synchronously from the "recv" thread, all others will be delivered asynchronously through delivery queues. This reduces latency at the expense of aggregate bandwidth.
Valid values are finite durations with an explicit unit or the keyword 'inf' for infinity. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "inf".
#### //CycloneDDS/Domain/Internal/SynchronousDeliveryPriorityThreshold
Integer
This element controls whether samples sent by a writer with QoS settings latency\_budget <= SynchronousDeliveryLatencyBound and transport\_priority greater than or equal to this element's value will be delivered synchronously from the "recv" thread, all others will be delivered asynchronously through delivery queues. This reduces latency at the expense of aggregate bandwidth.
The default value is: "0".
#### //CycloneDDS/Domain/Internal/Test
Children: [XmitLossiness](#cycloneddsdomaininternaltestxmitlossiness)
Testing options.
##### //CycloneDDS/Domain/Internal/Test/XmitLossiness
Integer
This element controls the fraction of outgoing packets to drop, specified as samples per thousand.
The default value is: "0".
#### //CycloneDDS/Domain/Internal/UnicastResponseToSPDPMessages
Boolean
This element controls whether the response to a newly discovered participant is sent as a unicasted SPDP packet, instead of rescheduling the periodic multicasted one. There is no known benefit to setting this to false.
The default value is: "true".
#### //CycloneDDS/Domain/Internal/UseMulticastIfMreqn
Integer
Do not use.
The default value is: "0".
#### //CycloneDDS/Domain/Internal/Watermarks
Children: [WhcAdaptive](#cycloneddsdomaininternalwatermarkswhcadaptive), [WhcHigh](#cycloneddsdomaininternalwatermarkswhchigh), [WhcHighInit](#cycloneddsdomaininternalwatermarkswhchighinit), [WhcLow](#cycloneddsdomaininternalwatermarkswhclow)
Watermarks for flow-control.
##### //CycloneDDS/Domain/Internal/Watermarks/WhcAdaptive
Boolean
This element controls whether Cyclone DDS will adapt the high-water mark to current traffic conditions, based on retransmit requests and transmit pressure.
The default value is: "true".
##### //CycloneDDS/Domain/Internal/Watermarks/WhcHigh
Number-with-unit
This element sets the maximum allowed high-water mark for the Cyclone DDS WHCs, expressed in bytes. A writer is suspended when the WHC reaches this size.
The unit must be specified explicitly. Recognised units: B (bytes), kB & KiB (2^10 bytes), MB & MiB (2^20 bytes), GB & GiB (2^30 bytes).
The default value is: "500 kB".
##### //CycloneDDS/Domain/Internal/Watermarks/WhcHighInit
Number-with-unit
This element sets the initial level of the high-water mark for the Cyclone DDS WHCs, expressed in bytes.
The unit must be specified explicitly. Recognised units: B (bytes), kB & KiB (2^10 bytes), MB & MiB (2^20 bytes), GB & GiB (2^30 bytes).
The default value is: "30 kB".
##### //CycloneDDS/Domain/Internal/Watermarks/WhcLow
Number-with-unit
This element sets the low-water mark for the Cyclone DDS WHCs, expressed in bytes. A suspended writer resumes transmitting when its Cyclone DDS WHC shrinks to this size.
The unit must be specified explicitly. Recognised units: B (bytes), kB & KiB (2^10 bytes), MB & MiB (2^20 bytes), GB & GiB (2^30 bytes).
The default value is: "1 kB".
#### //CycloneDDS/Domain/Internal/WriterLingerDuration
Number-with-unit
This setting controls the maximum duration for which actual deletion of a reliable writer with unacknowledged data in its history will be postponed to provide proper reliable transmission.
The unit must be specified explicitly. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "1 s".
### //CycloneDDS/Domain/Partitioning
Children: [IgnoredPartitions](#cycloneddsdomainpartitioningignoredpartitions), [NetworkPartitions](#cycloneddsdomainpartitioningnetworkpartitions), [PartitionMappings](#cycloneddsdomainpartitioningpartitionmappings)
The Partitioning element specifies Cyclone DDS network partitions and how DCPS partition/topic combinations are mapped onto the network partitions.
#### //CycloneDDS/Domain/Partitioning/IgnoredPartitions
Children: [IgnoredPartition](#cycloneddsdomainpartitioningignoredpartitionsignoredpartition)
The IgnoredPartitions element specifies DCPS partition/topic combinations that are not distributed over the network.
##### //CycloneDDS/Domain/Partitioning/IgnoredPartitions/IgnoredPartition
Attributes: [DCPSPartitionTopic](#cycloneddsdomainpartitioningignoredpartitionsignoredpartitiondcpspartitiontopic)
Text
This element can be used to prevent certain combinations of DCPS partition and topic from being transmitted over the network. Cyclone DDS will complete ignore readers and writers for which all DCPS partitions as well as their topic is ignored, not even creating DDSI readers and writers to mirror the DCPS ones.
The default value is: "".
##### //CycloneDDS/Domain/Partitioning/IgnoredPartitions/IgnoredPartition[@DCPSPartitionTopic]
Text
This attribute specifies a partition and a topic expression, separated by a single '.', that are used to determine if a given partition and topic will be ignored or not. The expressions may use the usual wildcards '\*' and '?'. Cyclone DDS will consider an wildcard DCPS partition to match an expression iff there exists a string that satisfies both expressions.
The default value is: "".
#### //CycloneDDS/Domain/Partitioning/NetworkPartitions
Children: [NetworkPartition](#cycloneddsdomainpartitioningnetworkpartitionsnetworkpartition)
The NetworkPartitions element specifies the Cyclone DDS network partitions.
##### //CycloneDDS/Domain/Partitioning/NetworkPartitions/NetworkPartition
Attributes: [Address](#cycloneddsdomainpartitioningnetworkpartitionsnetworkpartitionaddress), [Name](#cycloneddsdomainpartitioningnetworkpartitionsnetworkpartitionname)
Text
This element defines a Cyclone DDS network partition.
The default value is: "".
##### //CycloneDDS/Domain/Partitioning/NetworkPartitions/NetworkPartition[@Address]
Text
This attribute specifies the multicast addresses associated with the network partition as a comma-separated list. Readers matching this network partition (cf. Partitioning/PartitionMappings) will listen for multicasts on all of these addresses and advertise them in the discovery protocol. The writers will select the most suitable address from the addresses advertised by the readers.
The default value is: "".
##### //CycloneDDS/Domain/Partitioning/NetworkPartitions/NetworkPartition[@Name]
Text
This attribute specifies the name of this Cyclone DDS network partition. Two network partitions cannot have the same name.
The default value is: "".
#### //CycloneDDS/Domain/Partitioning/PartitionMappings
Children: [PartitionMapping](#cycloneddsdomainpartitioningpartitionmappingspartitionmapping)
The PartitionMappings element specifies the mapping from DCPS partition/topic combinations to Cyclone DDS network partitions.
##### //CycloneDDS/Domain/Partitioning/PartitionMappings/PartitionMapping
Attributes: [DCPSPartitionTopic](#cycloneddsdomainpartitioningpartitionmappingspartitionmappingdcpspartitiontopic), [NetworkPartition](#cycloneddsdomainpartitioningpartitionmappingspartitionmappingnetworkpartition)
Text
This element defines a mapping from a DCPS partition/topic combination to a Cyclone DDS network partition. This allows partitioning data flows by using special multicast addresses for part of the data and possibly also encrypting the data flow.
The default value is: "".
##### //CycloneDDS/Domain/Partitioning/PartitionMappings/PartitionMapping[@DCPSPartitionTopic]
Text
This attribute specifies a partition and a topic expression, separated by a single '.', that are used to determine if a given partition and topic maps to the Cyclone DDS network partition named by the NetworkPartition attribute in this PartitionMapping element. The expressions may use the usual wildcards '\*' and '?'. Cyclone DDS will consider a wildcard DCPS partition to match an expression if there exists a string that satisfies both expressions.
The default value is: "".
##### //CycloneDDS/Domain/Partitioning/PartitionMappings/PartitionMapping[@NetworkPartition]
Text
This attribute specifies which Cyclone DDS network partition is to be used for DCPS partition/topic combinations matching the DCPSPartitionTopic attribute within this PartitionMapping element.
The default value is: "".
### //CycloneDDS/Domain/SSL
Children: [CertificateVerification](#cycloneddsdomainsslcertificateverification), [Ciphers](#cycloneddsdomainsslciphers), [Enable](#cycloneddsdomainsslenable), [EntropyFile](#cycloneddsdomainsslentropyfile), [KeyPassphrase](#cycloneddsdomainsslkeypassphrase), [KeystoreFile](#cycloneddsdomainsslkeystorefile), [MinimumTLSVersion](#cycloneddsdomainsslminimumtlsversion), [SelfSignedCertificates](#cycloneddsdomainsslselfsignedcertificates), [VerifyClient](#cycloneddsdomainsslverifyclient)
The SSL element allows specifying various parameters related to using SSL/TLS for DDSI over TCP.
#### //CycloneDDS/Domain/SSL/CertificateVerification
Boolean
If disabled this allows SSL connections to occur even if an X509 certificate fails verification.
The default value is: "true".
#### //CycloneDDS/Domain/SSL/Ciphers
Text
The set of ciphers used by SSL/TLS
The default value is: "ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH".
#### //CycloneDDS/Domain/SSL/Enable
Boolean
This enables SSL/TLS for TCP.
The default value is: "false".
#### //CycloneDDS/Domain/SSL/EntropyFile
Text
The SSL/TLS random entropy file name.
The default value is: "".
#### //CycloneDDS/Domain/SSL/KeyPassphrase
Text
The SSL/TLS key pass phrase for encrypted keys.
The default value is: "secret".
#### //CycloneDDS/Domain/SSL/KeystoreFile
Text
The SSL/TLS key and certificate store file name. The keystore must be in PEM format.
The default value is: "keystore".
#### //CycloneDDS/Domain/SSL/MinimumTLSVersion
Text
The minimum TLS version that may be negotiated, valid values are 1.2 and 1.3.
The default value is: "1.3".
#### //CycloneDDS/Domain/SSL/SelfSignedCertificates
Boolean
This enables the use of self signed X509 certificates.
The default value is: "false".
#### //CycloneDDS/Domain/SSL/VerifyClient
Boolean
This enables an SSL server checking the X509 certificate of a connecting client.
The default value is: "true".
### //CycloneDDS/Domain/Security
Children: [AccessControl](#cycloneddsdomainsecurityaccesscontrol), [Authentication](#cycloneddsdomainsecurityauthentication), [Cryptographic](#cycloneddsdomainsecuritycryptographic)
This element is used to configure Cyclone DDS with the DDS Security specification plugins and settings.
#### //CycloneDDS/Domain/Security/AccessControl
Children: [Governance](#cycloneddsdomainsecurityaccesscontrolgovernance), [Library](#cycloneddsdomainsecurityaccesscontrollibrary), [Permissions](#cycloneddsdomainsecurityaccesscontrolpermissions), [PermissionsCA](#cycloneddsdomainsecurityaccesscontrolpermissionsca)
This element configures the Access Control plugin of the DDS Security specification.
##### //CycloneDDS/Domain/Security/AccessControl/Governance
Text
URI to the shared Governance Document signed by the Permissions CA in S/MIME format
URI schemes: file, data<br>
Examples file URIs:
<Governance>file:governance.smime</Governance>
<Governance>file:/home/myuser/governance.smime</Governance><br>
<Governance><![CDATA[data:,MIME-Version: 1.0
Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg="sha-256"; boundary="----F9A8A198D6F08E1285A292ADF14DD04F"
This is an S/MIME signed message
------F9A8A198D6F08E1285A292ADF14DD04F
<?xml version="1.0" encoding="UTF-8"?>
<dds xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="omg\_shared\_ca\_governance.xsd">
<domain\_access\_rules>
. . .
</domain\_access\_rules>
</dds>
...
------F9A8A198D6F08E1285A292ADF14DD04F
Content-Type: application/x-pkcs7-signature; name="smime.p7s"
Content-Transfer-Encoding: base64
Content-Disposition: attachment; filename="smime.p7s"
MIIDuAYJKoZIhv ...al5s=
------F9A8A198D6F08E1285A292ADF14DD04F-]]</Governance>
The default value is: "".
##### //CycloneDDS/Domain/Security/AccessControl/Library
Attributes: [finalizeFunction](#cycloneddsdomainsecurityaccesscontrollibraryfinalizefunction), [initFunction](#cycloneddsdomainsecurityaccesscontrollibraryinitfunction), [path](#cycloneddsdomainsecurityaccesscontrollibrarypath)
Text
This element specifies the library to be loaded as the DDS Security Access Control plugin.
The default value is: "".
##### //CycloneDDS/Domain/Security/AccessControl/Library[@finalizeFunction]
Text
This element names the finalization function of Access Control plugin. This function is called to let the plugin release its resources.
The default value is: "finalize\_access\_control".
##### //CycloneDDS/Domain/Security/AccessControl/Library[@initFunction]
Text
This element names the initialization function of Access Control plugin. This function is called after loading the plugin library for instantiation purposes. Init function must return an object that implements DDS Security Access Control interface.
The default value is: "init\_access\_control".
##### //CycloneDDS/Domain/Security/AccessControl/Library[@path]
Text
This element points to the path of Access Control plugin library.
It can be either absolute path excluding file extension ( /usr/lib/dds\_security\_ac ) or single file without extension ( dds\_security\_ac ).
If single file is supplied, the library located by way of the current working directory, or LD\_LIBRARY\_PATH for Unix systems, and PATH for Windows systems.
The default value is: "dds\_security\_ac".
##### //CycloneDDS/Domain/Security/AccessControl/Permissions
Text
URI to the DomainParticipant permissions document signed by the Permissions CA in S/MIME format
The permissions document specifies the permissions to be applied to a domain.<br>
Example file URIs:
<Permissions>file:permissions\_document.p7s</Permissions>
<Permissions>file:/path\_to/permissions\_document.p7s</Permissions>
Example data URI:
<Permissions><![CDATA[data:,.........]]</Permissions>
The default value is: "".
##### //CycloneDDS/Domain/Security/AccessControl/PermissionsCA
Text
URI to a X509 certificate for the PermissionsCA in PEM format.
Supported URI schemes: file, data
The file and data schemas shall refer to a X.509 v3 certificate (see X.509 v3 ITU-T Recommendation X.509 (2005) [39]) in PEM format.<br>
Examples:<br>
<PermissionsCA>file:permissions\_ca.pem</PermissionsCA>
<PermissionsCA>file:/home/myuser/permissions\_ca.pem</PermissionsCA><br>
<PermissionsCA>data:<strong>,</strong>-----BEGIN CERTIFICATE-----
MIIC3DCCAcQCCQCWE5x+Z ... PhovK0mp2ohhRLYI0ZiyYQ==
-----END CERTIFICATE-----</PermissionsCA>
The default value is: "".
#### //CycloneDDS/Domain/Security/Authentication
Children: [CRL](#cycloneddsdomainsecurityauthenticationcrl), [IdentityCA](#cycloneddsdomainsecurityauthenticationidentityca), [IdentityCertificate](#cycloneddsdomainsecurityauthenticationidentitycertificate), [IncludeOptionalFields](#cycloneddsdomainsecurityauthenticationincludeoptionalfields), [Library](#cycloneddsdomainsecurityauthenticationlibrary), [Password](#cycloneddsdomainsecurityauthenticationpassword), [PrivateKey](#cycloneddsdomainsecurityauthenticationprivatekey), [TrustedCADirectory](#cycloneddsdomainsecurityauthenticationtrustedcadirectory)
This element configures the Authentication plugin of the DDS Security specification.
##### //CycloneDDS/Domain/Security/Authentication/CRL
Text
Optional URI to load an X509 Certificate Revocation List
Supported URI schemes: file, data
Examples:
<CRL>file:crl.pem</CRL>
<CRL>data:,-----BEGIN X509 CRL-----<br>
MIIEpAIBAAKCAQEA3HIh...AOBaaqSV37XBUJg=<br>
-----END X509 CRL-----</CRL>
The default value is: "".
##### //CycloneDDS/Domain/Security/Authentication/IdentityCA
Text
URI to the X509 certificate [39] of the Identity CA that is the signer of Identity Certificate.
Supported URI schemes: file, data
The file and data schemas shall refer to a X.509 v3 certificate (see X.509 v3 ITU-T Recommendation X.509 (2005) [39]) in PEM format.
Examples:
<IdentityCA>file:identity\_ca.pem</IdentityCA>
<IdentityCA>data:,-----BEGIN CERTIFICATE-----<br>
MIIC3DCCAcQCCQCWE5x+Z...PhovK0mp2ohhRLYI0ZiyYQ==<br>
-----END CERTIFICATE-----</IdentityCA>
The default value is: "".
##### //CycloneDDS/Domain/Security/Authentication/IdentityCertificate
Text
Identity certificate that will be used for identifying all participants in the OSPL instance.<br>The content is URI to a X509 certificate signed by the IdentityCA in PEM format containing the signed public key.
Supported URI schemes: file, data
Examples:
<IdentityCertificate>file:participant1\_identity\_cert.pem</IdentityCertificate>
<IdentityCertificate>data:,-----BEGIN CERTIFICATE-----<br>
MIIDjjCCAnYCCQDCEu9...6rmT87dhTo=<br>
-----END CERTIFICATE-----</IdentityCertificate>
The default value is: "".
##### //CycloneDDS/Domain/Security/Authentication/IncludeOptionalFields
Boolean
The authentication handshake tokens may contain optional fields to be included for finding interoperability problems. If this parameter is set to true the optional fields are included in the handshake token exchange.
The default value is: "false".
##### //CycloneDDS/Domain/Security/Authentication/Library
Attributes: [finalizeFunction](#cycloneddsdomainsecurityauthenticationlibraryfinalizefunction), [initFunction](#cycloneddsdomainsecurityauthenticationlibraryinitfunction), [path](#cycloneddsdomainsecurityauthenticationlibrarypath)
Text
This element specifies the library to be loaded as the DDS Security Access Control plugin.
The default value is: "".
##### //CycloneDDS/Domain/Security/Authentication/Library[@finalizeFunction]
Text
This element names the finalization function of Authentication plugin. This function is called to let the plugin release its resources.
The default value is: "finalize\_authentication".
##### //CycloneDDS/Domain/Security/Authentication/Library[@initFunction]
Text
This element names the initialization function of Authentication plugin. This function is called after loading the plugin library for instantiation purposes. Init function must return an object that implements DDS Security Authentication interface.
The default value is: "init\_authentication".
##### //CycloneDDS/Domain/Security/Authentication/Library[@path]
Text
This element points to the path of Authentication plugin library.
It can be either absolute path excluding file extension ( /usr/lib/dds\_security\_auth ) or single file without extension ( dds\_security\_auth ).
If single file is supplied, the library located by way of the current working directory, or LD\_LIBRARY\_PATH for Unix systems, and PATH for Windows system.
The default value is: "dds\_security\_auth".
##### //CycloneDDS/Domain/Security/Authentication/Password
Text
A password used to decrypt the private\_key.
The value of the password property shall be interpreted as the Base64 encoding of the AES-128 key that shall be used to decrypt the private\_key using AES128-CBC.
If the password property is not present, then the value supplied in the private\_key property must contain the unencrypted private key.
The default value is: "".
##### //CycloneDDS/Domain/Security/Authentication/PrivateKey
Text
URI to access the private Private Key for all of the participants in the OSPL federation.
Supported URI schemes: file, data
Examples:
<PrivateKey>file:identity\_ca\_private\_key.pem</PrivateKey>
<PrivateKey>data:,-----BEGIN RSA PRIVATE KEY-----<br>
MIIEpAIBAAKCAQEA3HIh...AOBaaqSV37XBUJg==<br>
-----END RSA PRIVATE KEY-----</PrivateKey>
The default value is: "".
##### //CycloneDDS/Domain/Security/Authentication/TrustedCADirectory
Text
Trusted CA Directory which contains trusted CA certificates as separated files.
The default value is: "".
#### //CycloneDDS/Domain/Security/Cryptographic
Children: [Library](#cycloneddsdomainsecuritycryptographiclibrary)
This element configures the Cryptographic plugin of the DDS Security specification.
##### //CycloneDDS/Domain/Security/Cryptographic/Library
Attributes: [finalizeFunction](#cycloneddsdomainsecuritycryptographiclibraryfinalizefunction), [initFunction](#cycloneddsdomainsecuritycryptographiclibraryinitfunction), [path](#cycloneddsdomainsecuritycryptographiclibrarypath)
Text
This element specifies the library to be loaded as the DDS Security Cryptographic plugin.
The default value is: "".
##### //CycloneDDS/Domain/Security/Cryptographic/Library[@finalizeFunction]
Text
This element names the finalization function of Cryptographic plugin. This function is called to let the plugin release its resources.
The default value is: "finalize\_crypto".
##### //CycloneDDS/Domain/Security/Cryptographic/Library[@initFunction]
Text
This element names the initialization function of Cryptographic plugin. This function is called after loading the plugin library for instantiation purposes. Init function must return an object that implements DDS Security Cryptographic interface.
The default value is: "init\_crypto".
##### //CycloneDDS/Domain/Security/Cryptographic/Library[@path]
Text
This element points to the path of Cryptographic plugin library.
It can be either absolute path excluding file extension ( /usr/lib/dds\_security\_crypto ) or single file without extension ( dds\_security\_crypto ).
If single file is supplied, the library located by way of the current working directory, or LD\_LIBRARY\_PATH for Unix systems, and PATH for Windows systems.
The default value is: "dds\_security\_crypto".
### //CycloneDDS/Domain/SharedMemory
Children: [Enable](#cycloneddsdomainsharedmemoryenable), [Locator](#cycloneddsdomainsharedmemorylocator), [LogLevel](#cycloneddsdomainsharedmemoryloglevel), [Prefix](#cycloneddsdomainsharedmemoryprefix)
The Shared Memory element allows specifying various parameters related to using shared memory.
#### //CycloneDDS/Domain/SharedMemory/Enable
Boolean
This element allows to enable shared memory in Cyclone DDS.
The default value is: "false".
#### //CycloneDDS/Domain/SharedMemory/Locator
Text
Explicitly set the Iceoryx locator used by Cyclone to check whether a pair of processes is attached to the same Iceoryx shared memory. The default is to use one of the MAC addresses of the machine, which should work well in most cases.
The default value is: "".
#### //CycloneDDS/Domain/SharedMemory/LogLevel
One of: off, fatal, error, warn, info, debug, verbose
This element decides the verbosity level of shared memory message:
* off: no log
* fatal: show fatal log
* error: show error log
* warn: show warn log
* info: show info log
* debug: show debug log
* verbose: show verbose log
If you don't want to see any log from shared memory, use off to disable log message.
The default value is: "info".
#### //CycloneDDS/Domain/SharedMemory/Prefix
Text
Override the Iceoryx service name used by Cyclone.
The default value is: "DDS\_CYCLONE".
### //CycloneDDS/Domain/Sizing
Children: [ReceiveBufferChunkSize](#cycloneddsdomainsizingreceivebufferchunksize), [ReceiveBufferSize](#cycloneddsdomainsizingreceivebuffersize)
The Sizing element specifies a variety of configuration settings dealing with expected system sizes, buffer sizes, &c.
#### //CycloneDDS/Domain/Sizing/ReceiveBufferChunkSize
Number-with-unit
This element specifies the size of one allocation unit in the receive buffer. Must be greater than the maximum packet size by a modest amount (too large packets are dropped). Each allocation is shrunk immediately after processing a message, or freed straightaway.
The unit must be specified explicitly. Recognised units: B (bytes), kB & KiB (2^10 bytes), MB & MiB (2^20 bytes), GB & GiB (2^30 bytes).
The default value is: "128 KiB".
#### //CycloneDDS/Domain/Sizing/ReceiveBufferSize
Number-with-unit
This element sets the size of a single receive buffer. Many receive buffers may be needed. The minimum workable size a little bit larger than Sizing/ReceiveBufferChunkSize, and the value used is taken as the configured value and the actual minimum workable size.
The unit must be specified explicitly. Recognised units: B (bytes), kB & KiB (2^10 bytes), MB & MiB (2^20 bytes), GB & GiB (2^30 bytes).
The default value is: "1 MiB".
### //CycloneDDS/Domain/TCP
Children: [AlwaysUsePeeraddrForUnicast](#cycloneddsdomaintcpalwaysusepeeraddrforunicast), [Enable](#cycloneddsdomaintcpenable), [NoDelay](#cycloneddsdomaintcpnodelay), [Port](#cycloneddsdomaintcpport), [ReadTimeout](#cycloneddsdomaintcpreadtimeout), [WriteTimeout](#cycloneddsdomaintcpwritetimeout)
The TCP element allows specifying various parameters related to running DDSI over TCP.
#### //CycloneDDS/Domain/TCP/AlwaysUsePeeraddrForUnicast
Boolean
Setting this to true means the unicast addresses in SPDP packets will be ignored and the peer address from the TCP connection will be used instead. This may help work around incorrectly advertised addresses when using TCP.
The default value is: "false".
#### //CycloneDDS/Domain/TCP/Enable
One of: false, true, default
This element enables the optional TCP transport - deprecated, use General/Transport instead.
The default value is: "default".
#### //CycloneDDS/Domain/TCP/NoDelay
Boolean
This element enables the TCP\_NODELAY socket option, preventing multiple DDSI messages being sent in the same TCP request. Setting this option typically optimises latency over throughput.
The default value is: "true".
#### //CycloneDDS/Domain/TCP/Port
Integer
This element specifies the TCP port number on which Cyclone DDS accepts connections. If the port is set it is used in entity locators, published with DDSI discovery. Dynamically allocated if zero. Disabled if -1 or not configured. If disabled other DDSI services will not be able to establish connections with the service, the service can only communicate by establishing connections to other services.
The default value is: "-1".
#### //CycloneDDS/Domain/TCP/ReadTimeout
Number-with-unit
This element specifies the timeout for blocking TCP read operations. If this timeout expires then the connection is closed.
The unit must be specified explicitly. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "2 s".
#### //CycloneDDS/Domain/TCP/WriteTimeout
Number-with-unit
This element specifies the timeout for blocking TCP write operations. If this timeout expires then the connection is closed.
The unit must be specified explicitly. Recognised units: ns, us, ms, s, min, hr, day.
The default value is: "2 s".
### //CycloneDDS/Domain/Threads
Children: [Thread](#cycloneddsdomainthreadsthread)
This element is used to set thread properties.
#### //CycloneDDS/Domain/Threads/Thread
Attributes: [Name](#cycloneddsdomainthreadsthreadname)
Children: [Scheduling](#cycloneddsdomainthreadsthreadscheduling), [StackSize](#cycloneddsdomainthreadsthreadstacksize)
This element is used to set thread properties.
#### //CycloneDDS/Domain/Threads/Thread[@Name]
Text
The Name of the thread for which properties are being set. The following threads exist:
* gc: garbage collector thread involved in deleting entities;
* recv: receive thread, taking data from the network and running the protocol state machine;
* dq.builtins: delivery thread for DDSI-builtin data, primarily for discovery;
* lease: DDSI liveliness monitoring;
* tev: general timed-event handling, retransmits and discovery;
* fsm: finite state machine thread for handling security handshake;
* xmit.CHAN: transmit thread for channel CHAN;
* dq.CHAN: delivery thread for channel CHAN;
* tev.CHAN: timed-event thread for channel CHAN.
The default value is: "".
##### //CycloneDDS/Domain/Threads/Thread/Scheduling
Children: [Class](#cycloneddsdomainthreadsthreadschedulingclass), [Priority](#cycloneddsdomainthreadsthreadschedulingpriority)
This element configures the scheduling properties of the thread.
###### //CycloneDDS/Domain/Threads/Thread/Scheduling/Class
One of: realtime, timeshare, default
This element specifies the thread scheduling class (realtime, timeshare or default). The user may need special privileges from the underlying operating system to be able to assign some of the privileged scheduling classes.
The default value is: "default".
###### //CycloneDDS/Domain/Threads/Thread/Scheduling/Priority
Text
This element specifies the thread priority (decimal integer or default). Only priorities that are supported by the underlying operating system can be assigned to this element. The user may need special privileges from the underlying operating system to be able to assign some of the privileged priorities.
The default value is: "default".
##### //CycloneDDS/Domain/Threads/Thread/StackSize
Number-with-unit
This element configures the stack size for this thread. The default value default leaves the stack size at the operating system default.
The unit must be specified explicitly. Recognised units: B (bytes), kB & KiB (2^10 bytes), MB & MiB (2^20 bytes), GB & GiB (2^30 bytes).
The default value is: "default".
### //CycloneDDS/Domain/Tracing
Children: [AppendToFile](#cycloneddsdomaintracingappendtofile), [Category](#cycloneddsdomaintracingcategory), [OutputFile](#cycloneddsdomaintracingoutputfile), [PacketCaptureFile](#cycloneddsdomaintracingpacketcapturefile), [Verbosity](#cycloneddsdomaintracingverbosity)
The Tracing element controls the amount and type of information that is written into the tracing log by the DDSI service. This is useful to track the DDSI service during application development.
#### //CycloneDDS/Domain/Tracing/AppendToFile
Boolean
This option specifies whether the output is to be appended to an existing log file. The default is to create a new log file each time, which is generally the best option if a detailed log is generated.
The default value is: "false".
#### //CycloneDDS/Domain/Tracing/Category
One of:
* Comma-separated list of: fatal, error, warning, info, config, discovery, data, radmin, timing, traffic, topic, tcp, plist, whc, throttle, rhc, content, shm, malformed, trace
* Or empty
This element enables individual logging categories. These are enabled in addition to those enabled by Tracing/Verbosity. Recognised categories are:
* fatal: all fatal errors, errors causing immediate termination
* error: failures probably impacting correctness but not necessarily causing immediate termination
* warning: abnormal situations that will likely not impact correctness
* config: full dump of the configuration
* info: general informational notices
* discovery: all discovery activity
* data: include data content of samples in traces
* radmin: receive buffer administration
* timing: periodic reporting of CPU loads per thread
* traffic: periodic reporting of total outgoing data
* throttle: tracing of throttling events
* whc: tracing of writer history cache changes
* rhc: tracing of reader history cache changes
* tcp: tracing of TCP-specific activity
* topic: tracing of topic definitions
* plist: tracing of discovery parameter list interpretation
* content: tracing of sample contents
* shm: tracing of Iceoryx integration
* malformed: dump malformed full packet as warning
In addition, there is the keyword trace that enables: fatal, error, warning, info, config, discovery, data, trace, timing, traffic, tcp, throttle, content..
The categorisation of tracing output is incomplete and hence most of the verbosity levels and categories are not of much use in the current release. This is an ongoing process and here we describe the target situation rather than the current situation. Currently, the most useful is trace.
The default value is: "".
#### //CycloneDDS/Domain/Tracing/OutputFile
Text
This option specifies where the logging is printed to. Note that stdout and stderr are treated as special values, representing "standard out" and "standard error" respectively. No file is created unless logging categories are enabled using the Tracing/Verbosity or Tracing/EnabledCategory settings.
The default value is: "cyclonedds.log".
#### //CycloneDDS/Domain/Tracing/PacketCaptureFile
Text
This option specifies the file to which received and sent packets will be logged in the "pcap" format suitable for analysis using common networking tools, such as WireShark. IP and UDP headers are fictitious, in particular the destination address of received packets. The TTL may be used to distinguish between sent and received packets: it is 255 for sent packets and 128 for received ones. Currently IPv4 only.
The default value is: "".
#### //CycloneDDS/Domain/Tracing/Verbosity
One of: finest, finer, fine, config, info, warning, severe, none
This element enables standard groups of categories, based on a desired verbosity level. This is in addition to the categories enabled by the Tracing/Category setting. Recognised verbosity levels and the categories they map to are:
* none: no Cyclone DDS log
* severe: error and fatal
* warning: severe + warning
* info: warning + info
* config: info + config
* fine: config + discovery
* finer: fine + traffic and timing
* finest: finer + trace
While none prevents any message from being written to a DDSI2 log file.
The categorisation of tracing output is incomplete and hence most of the verbosity levels and categories are not of much use in the current release. This is an ongoing process and here we describe the target situation rather than the current situation. Currently, the most useful verbosity levels are config, fine and finest.
The default value is: "none".
<!--- generated from ddsi_config.h[87da706bc9c463a87326e87b311d8291d5761d43] -->
<!--- generated from ddsi_cfgunits.h[fc550f1620aa20dcd9244ef4e24299d5001efbb4] -->
<!--- generated from ddsi_cfgelems.h[779636e47ae3db4f970aae732353db6d7ba9583f] -->
<!--- generated from ddsi_config.c[f1481cfdb01fe1010eabd34a879d5aa2c2262bec] -->
<!--- generated from _confgen.h[01ffa8a2e53b2309451756861466551cfe28c8ce] -->
<!--- generated from _confgen.c[13cd40932d695abae1470202a42c18dc4d09ea84] -->
<!--- generated from generate_rnc.c[a2ec6e48d33ac14a320c8ec3f320028a737920e0] -->
<!--- generated from generate_md.c[a61b6a9649d18afeca4c73b5784f36989d7994e0] -->
<!--- generated from generate_xsd.c[45064e8869b3c00573057d7c8f02d20f04b40e16] -->
<!--- generated from generate_defconfig.c[421f8c9fd9bbfe320f985463dbe8f09c849ed166] -->
|