| 1387 | } |
| 1388 | |
| 1389 | void SAMMasterSession::Close () |
| 1390 | { |
| 1391 | SAMSingleSession::Close (); |
| 1392 | for (const auto& it: subsessions) |
| 1393 | m_Bridge.CloseSession (it); |
| 1394 | subsessions.clear (); |
| 1395 | } |
| 1396 | |
| 1397 | SAMSubSession::SAMSubSession (std::shared_ptr<SAMMasterSession> master, std::string_view name, SAMSessionType type, uint16_t port): |
| 1398 | SAMSession (master->m_Bridge, name, type), masterSession (master), inPort (port) |
no test coverage detected