]> git.ipfire.org Git - thirdparty/squid.git/blame - src/redirect.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / redirect.h
CommitLineData
c548327a 1/*
ef57eb7b 2 * Copyright (C) 1996-2016 The Squid Software Foundation and contributors
c548327a 3 *
bbc27441
AJ
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
c548327a
FC
7 */
8
bbc27441
AJ
9/* DEBUG: section 61 Redirector */
10
11#ifndef SQUID_REDIRECT_H_
12#define SQUID_REDIRECT_H_
13
e166785a
AJ
14#include "helper.h"
15
32fd6d8a
CT
16enum TimeoutAction {toutActBypass, toutActFail, toutActRetry, toutActUseConfiguredResponse};
17
e166785a
AJ
18class ClientHttpRequest;
19
8a648e8d
FC
20void redirectInit(void);
21void redirectShutdown(void);
e166785a 22void redirectStart(ClientHttpRequest *, HLPCB *, void *);
a8a0b1c2 23void storeIdStart(ClientHttpRequest *, HLPCB *, void *);
c548327a
FC
24
25#endif /* SQUID_REDIRECT_H_ */
f53969cc 26