aboutsummaryrefslogtreecommitdiff
path: root/src/client/QXmppUploadRequestManager.h
Commit message (Collapse)AuthorAgeFilesLines
* Code formattingLinus Jahn2023-01-221-1/+1
|
* Use QXmppError in all IQ results instead of StanzaErrorLinus Jahn2023-01-221-3/+5
| | | | | | | | This allows us to report different error types with more information and makes it possible to distinguish stanza errors and errors generated locally. Part of #501.
* Introduce QXmppTask & QXmppPromiseLinus Jahn2023-01-031-10/+10
| | | | | | Closes #502. Co-authored-by: Jonah BrĂ¼chert <jbb@kaidan.im>
* Replace raw pointers with unique_ptrLinus Jahn2022-09-021-1/+1
| | | | safer, simpler
* Run 'clang-format' on all filesMelvin Keskin2022-01-151-2/+2
|
* Convert copyright headers to REUSELinus Jahn2022-01-141-22/+3
|
* Update copyright years (2022 edition)Linus Jahn2022-01-091-1/+1
|
* UploadRequestManager: Add QFuture-based requestsLinus Jahn2021-06-271-0/+15
|
* Update copyright headers to 2021Linus Jahn2021-02-191-1/+1
|
* Make QXmpp work with projects using QT_NO_KEYWORDSLinus Jahn2020-02-111-1/+1
| | | | | | | | | | | This replaces all occurencies of 'slots' and 'signals' with 'Q_SLOTS' and 'Q_SIGNALS'. This allows for smooth integration with software projects that need QT_NO_KEYWORDS, such as those ones that rely on boost libraries. Closes #115. Co-authored-by: Tommaso Cucinotta <tommaso.cucinotta@santannapisa.it>
* doc: Use XEP links everywhereLinus Jahn2020-02-111-2/+3
|
* clang-format: Enable regrouping and sorting of includesLinus Jahn2020-02-031-0/+1
|
* Bump copyright year to 2020Linus Jahn2020-01-061-1/+1
|
* Add a .clang-format somewhat close to the current style0xd34df00d2019-12-231-1/+1
|
* Replace emails in copyright headers by entries in the AUTHORS fileLinus Jahn2019-12-081-1/+1
| | | | Mostly this was a mistake by me in earlier contributions.
* Add \since QXmpp 1.1 to all new methods and classesLinus Jahn2019-10-231-0/+2
| | | | Methods of new classes have no \since tag.
* QXmppUploadRequestManager: Fix doxygen warningsLinus Jahn2019-10-211-8/+6
|
* Add unit tests for QXmppUploadRequestManagerblue2019-10-201-1/+0
| | | | Co-authored-by: Linus Jahn <lnj@kaidan.im>
* Implement XEP-0363: HTTP File Upload: UploadRequestManagerLinus Jahn2019-10-201-0/+141
This adds a manager to simplify service discovery and IQ sending for XEP-0363: HTTP File Upload.