Let OS pick the outgoing (i.e., source) address instead.
Code did not supply info required for tcp_outgoing_address ACL match to work,
and tcp_outgoing_address is usually not applicable to ICAP communication.
Eventually, we may add icap_outgoing_address.
disableRetries(); // we only retry pconn failures
- IPAddress outgoing(getOutgoingAddr(NULL));
+ IPAddress outgoing;
+ outgoing.SetAnyAddr();
connection = comm_open(SOCK_STREAM, 0, outgoing,
COMM_NONBLOCKING, s.uri.buf());