Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Improve & refactor Jingle base implementation | fiaxh | 2021-03-21 | 1 | -1061/+0 |
| | | | | Co-authored-by: Marvin W <git@larma.de> | ||||
* | Only query entity caps when we need them | fiaxh | 2020-07-16 | 1 | -14/+14 |
| | |||||
* | xmpp-vala: Use more async | fiaxh | 2020-04-24 | 1 | -1/+1 |
| | |||||
* | Remove features from service discovery module when detaching module from stream | fiaxh | 2020-04-21 | 1 | -0/+1 |
| | | | | | fixes #179 fixes #812 | ||||
* | Properly check Jids everywhere | Marvin W | 2019-12-23 | 1 | -5/+7 |
| | |||||
* | Fix Jingle transport error | fiaxh | 2019-09-29 | 1 | -2/+1 |
| | |||||
* | Add JET support | Marvin W | 2019-09-16 | 1 | -8/+60 |
| | |||||
* | Fix some warnings | hrxi | 2019-09-10 | 1 | -1/+1 |
| | | | | | | Instances of `RegexError` are just asserted as `assert_not_reached` as they cannot really fail except for allocation failure if the given regex is valid. | ||||
* | Don't error on Jingle file transfer hash session-info | hrxi | 2019-08-27 | 1 | -5/+29 |
| | |||||
* | Fix candidate selection for equal priority | hrxi | 2019-08-24 | 1 | -1/+1 |
| | | | | | | XEP-0260 states that the candidate selected (offered) by the initiator wins, not the one that was chosen by the initiator (i.e. offered by the responder). | ||||
* | Fix Jingle connection code when `cancellable` is `null` | hrxi | 2019-08-09 | 1 | -2/+7 |
| | |||||
* | Fix race condition involving `session-terminate` | hrxi | 2019-08-08 | 1 | -3/+9 |
| | | | | | | | The Jingle file transfer (XEP-0234) specifies that the receiver of the file transfer is the one to terminate the session. Otherwise, there might be a race condition between the XMPP stream and out-of-band SOCKS5 connections. | ||||
* | Fall back to IBB if S5B does not work out | hrxi | 2019-08-06 | 1 | -37/+168 |
| | | | | | This mostly happens if connectivity to the candidates cannot be established. | ||||
* | Send Jingle errors to the right JID | hrxi | 2019-08-06 | 1 | -3/+3 |
| | |||||
* | Implement detach | hrxi | 2019-08-06 | 1 | -1/+3 |
| | |||||
* | Factor out the session-terminate handler | hrxi | 2019-08-06 | 1 | -25/+35 |
| | |||||
* | Add support for Jingle SOCKS5 bytestreams (XEP-0260) | hrxi | 2019-08-05 | 1 | -73/+173 |
| | |||||
* | Terminate the Jingle session after the file transfer is complete | hrxi | 2019-08-05 | 1 | -13/+93 |
| | |||||
* | Fix a couple of delegate copy warnigs | hrxi | 2019-08-05 | 1 | -1/+1 |
| | | | | "warning: copying delegates is not supported" | ||||
* | Add jingle connection for better interfacing with jingle (terminate etc.) | hrxi | 2019-08-05 | 1 | -15/+170 |
| | |||||
* | Fix compilation with older valac versions | fiaxh | 2019-07-18 | 1 | -11/+11 |
| | |||||
* | Add file receiving via Jingle | hrxi | 2019-07-09 | 1 | -109/+275 |
| | | | | | This currently follows the same rules as HTTP file download for accepting files. | ||||
* | Implement file sending via Jingle | hrxi | 2019-07-09 | 1 | -0/+328 |
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. |