| 71 | } |
| 72 | |
| 73 | void |
| 74 | TransportConfig::sorted_insert(const TransportInst_rch& inst) |
| 75 | { |
| 76 | const OPENDDS_STRING name = inst->name(); |
| 77 | InstancesType::iterator it = instances_.begin(); |
| 78 | while (it != instances_.end() && (*it)->name() < name) { |
| 79 | ++it; |
| 80 | } |
| 81 | instances_.insert(it, inst); |
| 82 | } |
| 83 | |
| 84 | void |
| 85 | TransportConfig::populate_locators(TransportLocatorSeq& trans_info, |