1/*
2 This file is part of the KDE libraries
3 SPDX-FileCopyrightText: 2002 Jan-Pascal van Best <janpascal@vanbest.org>
4
5 SPDX-License-Identifier: LGPL-2.0-or-later
6*/
7
8#ifndef KIOWORKER_HTTPMETHOD_P_H_
9#define KIOWORKER_HTTPMETHOD_P_H_
10
11namespace KIO
12{
13/*!
14 HTTP / DAV method
15 \internal
16 */
17enum HTTP_METHOD {
18 HTTP_GET,
19 HTTP_PUT,
20 HTTP_POST,
21 HTTP_HEAD,
22 HTTP_DELETE,
23 HTTP_OPTIONS,
24 DAV_PROPFIND,
25 DAV_PROPPATCH,
26 DAV_MKCOL,
27 DAV_COPY,
28 DAV_MOVE,
29 DAV_LOCK,
30 DAV_UNLOCK,
31 DAV_SEARCH,
32 DAV_SUBSCRIBE,
33 DAV_UNSUBSCRIBE,
34 DAV_POLL,
35 DAV_NOTIFY,
36 DAV_REPORT,
37 HTTP_UNKNOWN = -1,
38};
39
40}
41
42#endif
43

source code of kio/src/core/httpmethod_p.h