| 71 | } |
| 72 | |
| 73 | Server::~Server(void) { |
| 74 | SessionMap::iterator it = this->sessions_.begin(); |
| 75 | for (; it != this->sessions_.end(); ++it) { |
| 76 | std::string session_id = it->first; |
| 77 | this->ShutDownSession(session_id); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | void Server::Initialize(const int port, |
| 82 | const std::string& host, |
nothing calls this directly
no test coverage detected