aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppStanza_p.h
Commit message (Collapse)AuthorAgeFilesLines
* Adapt clang-formatLinus Jahn2022-06-171-1/+1
|
* Stanza_p.h: Move function definitions into Stanza.cppLinus Jahn2022-03-121-138/+6
| | | | | This way the function definition is shared and it avoids unused function warnings in QXmppStreamManagement.cpp.
* Convert copyright headers to REUSELinus Jahn2022-01-141-22/+3
|
* Update copyright years (2022 edition)Linus Jahn2022-01-091-1/+1
|
* Update copyright headers to 2021Linus Jahn2021-02-191-1/+1
|
* Hide deprecation warnings caused by compatibility codeLinus Jahn2020-08-041-2/+8
| | | | This makes the build log clean again.
* QXmppStanza::Error: Use std::optional<> internallyLinus Jahn2020-07-121-6/+38
| | | | | | | | | This makes the variables for the error type and condition an std::optional<> as this makes the meaning clearer than hidden -1 values created by dubious casts. For now, the API is not changed, because we can't replace the getter easily. We could do something like type() and optionalType().
* QXmppStanza: Add PolicyViolation error conditionLinus Jahn2020-03-311-0/+4
| | | | The error condition as stanza error was added in RFC6120.
* Bump copyright year to 2020Linus Jahn2020-01-061-1/+1
|
* Add a .clang-format somewhat close to the current style0xd34df00d2019-12-231-25/+23
|
* Bump copyright year to 2019Jeremy Lainé2019-01-081-1/+1
|
* Implement XEP-0198: Stream Management (client only) (#99)Niels Ole Salscheider2017-02-121-0/+145
* Some features can be available with different namespaces (e.g. SM) * Provide static functions to convert between strings and stream errors Stream management will reuse this for <failed />. * [travis] test builds using clang * Implement XEP-0198: Stream Management (client only) * QXmppOutgoingClient: Move private methods to QXmppOutgoingClientPrivate