Hi,

On mod_jk up to apache 2.0 alpha14 we used :

s->remote_host  = (char *)ap_get_remote_host(r->connection,
r->per_dir_config, REMOTE_HOST);

now ap_get_remote_host need another parameter and I choose to use
REMOTE_NAME :
 
s->remote_host  = (char *)ap_get_remote_host(r->connection,
r->per_dir_config, REMOTE_NAME, REMOTE_HOST);

Did I do the right choice ;)

Reply via email to