| 2460 | } |
| 2461 | |
| 2462 | void RtmpContext::OnConnected(int error_code) { |
| 2463 | if (_on_connect != NULL) { |
| 2464 | void (*saved_on_connect)(int, void*) = _on_connect; |
| 2465 | void* saved_arg = _on_connect_arg; |
| 2466 | _on_connect = NULL; |
| 2467 | saved_on_connect(error_code, saved_arg); |
| 2468 | } |
| 2469 | } |
| 2470 | |
| 2471 | bool RtmpChunkStream::OnResult(const RtmpMessageHeader& mh, |
| 2472 | AMFInputStream* istream, Socket* socket) { |
no outgoing calls
no test coverage detected