QXmpp Version: 1.8.0
Loading...
Searching...
No Matches
QXmppStreamError.h
1// SPDX-FileCopyrightText: 2024 Linus Jahn <lnj@kaidan.im>
2//
3// SPDX-License-Identifier: LGPL-2.1-or-later
4
5#ifndef QXMPPSTREAMERROR_H
6#define QXMPPSTREAMERROR_H
7
8namespace QXmpp {
9
15enum class StreamError {
16 BadFormat,
17 BadNamespacePrefix,
18 Conflict,
19 ConnectionTimeout,
20 HostGone,
21 HostUnknown,
22 ImproperAddressing,
23 InternalServerError,
24 InvalidFrom,
25 InvalidNamespace,
26 InvalidXml,
27 NotAuthorized,
28 NotWellFormed,
29 PolicyViolation,
30 RemoteConnectionFailed,
31 Reset,
32 ResourceConstraint,
33 RestrictedXml,
34 SystemShutdown,
35 UndefinedCondition,
36 UnsupportedEncoding,
37 UnsupportedFeature,
38 UnsupportedStanzaType,
39 UnsupportedVersion,
40};
41
42} // namespace QXmpp
43
44#endif // QXMPPSTREAMERROR_H
Definition Algorithms.h:12
StreamError
Definition QXmppStreamError.h:15