| 6808 | |
| 6809 | #ifdef USE_TLS |
| 6810 | int call::logSrtpInfo(const char *fmt, ...) |
| 6811 | { |
| 6812 | va_list args; |
| 6813 | |
| 6814 | if (_srtpctxdebugfile != nullptr) |
| 6815 | { |
| 6816 | va_start(args, fmt); |
| 6817 | vfprintf(_srtpctxdebugfile, fmt, args); |
| 6818 | va_end(args); |
| 6819 | } |
| 6820 | |
| 6821 | return 0; |
| 6822 | } |
| 6823 | #endif // USE_TLS |
| 6824 | |
| 6825 | void call::setSessionState(SessionState state) |
nothing calls this directly
no outgoing calls
no test coverage detected