| 26 | |
| 27 | #if OPENDDS_CONFIG_SECURITY |
| 28 | void append( |
| 29 | DDS::PropertySeq& props, const char* name, const char* value, bool propagate) |
| 30 | { |
| 31 | const DDS::Property_t prop = {name, value, propagate}; |
| 32 | const unsigned int len = props.length(); |
| 33 | props.length(len + 1); |
| 34 | props[len] = prop; |
| 35 | } |
| 36 | |
| 37 | void set_security_qos(DDS::DomainParticipantQos& participant_qos, unsigned secid) |
| 38 | { |
no test coverage detected