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/** HTTP / DAV method **/
14enum HTTP_METHOD {
15 HTTP_GET,
16 HTTP_PUT,
17 HTTP_POST,
18 HTTP_HEAD,
19 HTTP_DELETE,
20 HTTP_OPTIONS,
21 DAV_PROPFIND,
22 DAV_PROPPATCH,
23 DAV_MKCOL,
24 DAV_COPY,
25 DAV_MOVE,
26 DAV_LOCK,
27 DAV_UNLOCK,
28 DAV_SEARCH,
29 DAV_SUBSCRIBE,
30 DAV_UNSUBSCRIBE,
31 DAV_POLL,
32 DAV_NOTIFY,
33 DAV_REPORT,
34 HTTP_UNKNOWN = -1,
35};
36
37}
38
39#endif
40

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