Geoffrey Young
2005-09-19 17:39:22 UTC
+#ifdef HAVE_SSL_EXT_LOOKUP
if (!ext_lookup) {
ap_rputs("ssl_ext_lookup not available", r);
return OK;
}
hey, speaking of this ext_lookup, can you give me an example of what thisif (!ext_lookup) {
ap_rputs("ssl_ext_lookup not available", r);
return OK;
}
function does? in Apache::SSLLookup I've added perl glue for this method,
and right now I've got 2 forms:
my $client_foo = $r->ext_lookup($something, 1);
my $server_foo = $r->ext_lookup($something);
but I really could never figure out what to glean from the generated ssl
certificates to test against, what to pass as $something, etc.
ideas?
--Geoff