if (Config.onoff.client_dst_passthru && (checklist->request->flags.intercepted || checklist->request->flags.interceptTproxy)) {
const ConnStateData *conn = checklist->conn();
return (conn != NULL && conn->clientConnection != NULL) ?
- ACLIP::match(conn->clientConnection->local) : -1;
+ ACLIP::match(conn->clientConnection->local) : -1;
}
if (flags.isSet(ACL_F_NO_LOOKUP)) {
if (Ftp::Server *srv = dynamic_cast<Ftp::Server*>(mgr.get())) {
typedef NullaryMemFunT<Ftp::Server> CbDialer;
AsyncCall::Pointer call = JobCallback(11, 3, CbDialer, srv,
- Ftp::Server::originDataCompletionCheckpoint);
+ Ftp::Server::originDataCompletionCheckpoint);
ScheduleCallHere(call);
}
}
// TODO: If the server control connection is gone, reset state to login
// again. Reseting login alone is not enough: FtpRelay::sendCommand() will
- // not re-login because FtpRelay::serverState() is not going to be
+ // not re-login because FtpRelay::serverState() is not going to be
// fssConnected. Calling resetLogin() alone is also harmful because
// it does not reset correctly the client-to-squid control connection (eg
// respond if required with an error code, in all cases)