MCPcopy Create free account
hub / github.com/apache/httpd / ssl_var_log_handler_x

Function ssl_var_log_handler_x

modules/ssl/ssl_engine_vars.c:1234–1243  ·  view source on GitHub ↗

* extend the implementation of the %{..}x log function * (there can be more functions) */

Source from the content-addressed store, hash-verified

1232 * (there can be more functions)
1233 */
1234static const char *ssl_var_log_handler_x(request_rec *r, char *a)
1235{
1236 char *result;
1237
1238 result = ssl_var_lookup(r->pool, r->server, r->connection, r, a);
1239 if (result) {
1240 result = *result ? ap_escape_logitem(r->pool, result) : NULL;
1241 }
1242 return result;
1243}
1244
1245

Callers

nothing calls this directly

Calls 2

ap_escape_logitemFunction · 0.85
ssl_var_lookupFunction · 0.70

Tested by

no test coverage detected