aboutsummaryrefslogtreecommitdiff
path: root/xmpp-vala/src/module/xep/0234_jingle_file_transfer.vala
Commit message (Collapse)AuthorAgeFilesLines
* Finish file transfer after receiving enough datahrxi2019-08-051-8/+53
| | | | | | | | | | This means that we no longer rely on the remote end to close the connection after sending the file, but additionally use the `<size>` element from the initial file transfer `<description>` to check whether the file transfer has been completed. This was motivated by Conversations not closing the connection for SOCKS5 file transfers.
* Add jingle connection for better interfacing with jingle (terminate etc.)hrxi2019-08-051-6/+1
|
* Refactor file receive/send interfaces and UIfiaxh2019-07-181-1/+6
|
* Add file receiving via Jinglehrxi2019-07-091-50/+80
| | | | | This currently follows the same rules as HTTP file download for accepting files.
* Implement file sending via Jinglehrxi2019-07-091-0/+100
This is still disabled by default until prioritization is implemented; otherwise this could be preferred to HTTP uploads. File sending only works via Jingle In-Band-Bytestreams right now, more transports are going to be implemented. To test this, uncomment the line with `JingleFileTransfer` in libdino/src/application.vala.