| 141 | } |
| 142 | |
| 143 | static void sip_tls_keylog_callback(const SSL *ssl, const char *line) |
| 144 | { |
| 145 | const char *keylog_file_name = keylog_file(); |
| 146 | |
| 147 | if (line && keylog_file_name) { |
| 148 | write_keylog_line(keylog_file_name, line); |
| 149 | } |
| 150 | } |
| 151 | #endif // HAVE_KEYLOG_CB |
| 152 | |
| 153 | /****** SSL error handling *************/ |
nothing calls this directly
no test coverage detected