mirror of https://github.com/nealey/eris.git
Use stunnel-provided combined addr
This commit is contained in:
parent
c3ddfae1ff
commit
86a75813e3
9
eris.c
9
eris.c
|
@ -238,17 +238,14 @@ get_ucspi_env()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!ip) {
|
|
||||||
// stunnel
|
|
||||||
ip = getenv("REMOTE_HOST");
|
|
||||||
port = getenv("REMOTE_PORT");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ip) {
|
if (ip) {
|
||||||
char buf[80];
|
char buf[80];
|
||||||
|
|
||||||
snprintf(buf, sizeof buf, "%s:%s", ip, port);
|
snprintf(buf, sizeof buf, "%s:%s", ip, port);
|
||||||
remote_addr = strdup(buf);
|
remote_addr = strdup(buf);
|
||||||
|
} else {
|
||||||
|
// stunnel
|
||||||
|
remote_addr = getenv("REMOTE_ADDR");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue