]> git.ipfire.org Git - thirdparty/squid.git/blame - src/gopher.h
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / gopher.h
CommitLineData
fc54b8d2 1/*
77b1029d 2 * Copyright (C) 1996-2020 The Squid Software Foundation and contributors
fc54b8d2 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.
fc54b8d2
FC
7 */
8
bbc27441
AJ
9/* DEBUG: section 10 Gopher */
10
fc54b8d2
FC
11#ifndef SQUID_GOPHER_H_
12#define SQUID_GOPHER_H_
13
14class FwdState;
15class HttpRequest;
16
17/**
18 \defgroup ServerProtocolGopherAPI Server-Side Gopher API
19 \ingroup ServerProtocol
20 */
21
22/// \ingroup ServerProtocolGopherAPI
8a648e8d 23void gopherStart(FwdState *);
fc54b8d2
FC
24
25/// \ingroup ServerProtocolGopherAPI
8a648e8d 26int gopherCachable(const HttpRequest *);
fc54b8d2 27
fc54b8d2 28#endif /* SQUID_GOPHER_H_ */
f53969cc 29