> +#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 this
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