Lines Matching refs:msg
181 const int rc, const char * const msg) in elog() argument
185 msg, gnutls_strerror_name(rc), gnutls_strerror(rc)); in elog()
195 char msg[1024]; in elogf() local
198 vsnprintf(msg, sizeof(msg), fmt, ap); in elogf()
200 elog(errh, file, line, rc, msg); in elogf()
1526 const gnutls_datum_t *msg) in mod_gnutls_client_hello_hook() argument
1547 int rc = gnutls_ext_raw_parse(hctx, mod_gnutls_client_hello_ext_cb, msg, in mod_gnutls_client_hello_hook()
2803 gnutls_datum_t msg = { NULL, 0 }; in https_add_ssl_client_verify_err() local
2805 &msg, 0) >= 0) { in https_add_ssl_client_verify_err()
2806 size_t sz = msg.size-1; /* '\0'-terminated string */ in https_add_ssl_client_verify_err()
2807 for (char *nl=(char *)msg.data; NULL != (nl=strchr(nl, '\n')); ++nl) in https_add_ssl_client_verify_err()
2809 buffer_append_string_len(b, (char *)msg.data, sz); in https_add_ssl_client_verify_err()
2811 if (msg.data) gnutls_free(msg.data); in https_add_ssl_client_verify_err()