Used in rtmp.cpp, don't be static
| 64 | |
| 65 | // Used in rtmp.cpp, don't be static |
| 66 | int WriteWithoutOvercrowded(Socket* s, SocketMessagePtr<>& msg) { |
| 67 | Socket::WriteOptions wopt; |
| 68 | wopt.ignore_eovercrowded = true; |
| 69 | return s->Write(msg, &wopt); |
| 70 | } |
| 71 | |
| 72 | const char* messagetype2str(RtmpMessageType t) { |
| 73 | switch (t) { |
no test coverage detected