| 39 | } |
| 40 | |
| 41 | SessionHandle IEServer::InitializeSession() { |
| 42 | LOG(TRACE) << "Entering IEServer::InitializeSession"; |
| 43 | SessionHandle session_handle(new IESession()); |
| 44 | SessionParameters params; |
| 45 | params.port = this->port(); |
| 46 | session_handle->Initialize(reinterpret_cast<void*>(¶ms)); |
| 47 | return session_handle; |
| 48 | } |
| 49 | |
| 50 | std::string IEServer::GetStatus() { |
| 51 | LOG(TRACE) << "Entering IEServer::GetStatus"; |
no test coverage detected