| 72 | static srtp_err_report_handler_func_t *srtp_err_report_handler = NULL; |
| 73 | |
| 74 | srtp_err_status_t srtp_install_err_report_handler( |
| 75 | srtp_err_report_handler_func_t func) |
| 76 | { |
| 77 | srtp_err_report_handler = func; |
| 78 | return srtp_err_status_ok; |
| 79 | } |
| 80 | |
| 81 | void srtp_err_report(srtp_err_reporting_level_t level, const char *format, ...) |
| 82 | { |
no outgoing calls
no test coverage detected