]> git.ipfire.org Git - thirdparty/squid.git/blame - src/mime.h
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / mime.h
CommitLineData
b65ce00c 1/*
5b74111a 2 * Copyright (C) 1996-2018 The Squid Software Foundation and contributors
b65ce00c 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.
b65ce00c
FC
7 */
8
bbc27441
AJ
9/* DEBUG: section 25 MIME Parsing and Internal Icons */
10
b65ce00c
FC
11#ifndef SQUID_MIME_H_
12#define SQUID_MIME_H_
13
8a648e8d 14void mimeInit(char *filename);
2cac2cc9
FC
15const char *mimeGetContentEncoding(const char *fn);
16const char *mimeGetContentType(const char *fn);
8a648e8d
FC
17const char *mimeGetIconURL(const char *fn);
18char mimeGetTransferMode(const char *fn);
2cac2cc9
FC
19bool mimeGetDownloadOption(const char *fn);
20bool mimeGetViewOption(const char *fn);
b65ce00c
FC
21
22#endif /* SQUID_MIME_H_ */
f53969cc 23