| 391 | } |
| 392 | |
| 393 | void Frontend::parseStreamString(const std::string &msg1, const std::string &method) { |
| 394 | SI_LOG_INFO("Stream: %d, Parsing transport parameters...", _streamID); |
| 395 | |
| 396 | // Do we need to transform this request? |
| 397 | const std::string msg = _transform.transformStreamString(_streamID, msg1, method); |
| 398 | |
| 399 | _frontendData.parseStreamString(_streamID, msg, method); |
| 400 | |
| 401 | SI_LOG_DEBUG("Stream: %d, Parsing transport parameters (Finished)", _streamID); |
| 402 | } |
| 403 | |
| 404 | bool Frontend::update() { |
| 405 | SI_LOG_INFO("Stream: %d, Updating frontend...", _streamID); |
nothing calls this directly
no test coverage detected