Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Allow self-signed .onion file transfer certs (#1149) | Matthew Fennell | 2024-06-29 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | Most Certificate Authorities don't support issuing X.509 certificates for onion sites. However, it can still be useful to provide a certificate over Tor in some circumstances, for instance to tie your alphanumeric Tor address to your site's main identity. Therefore, many Tor services provide self-signed certificates. This is OK, since the onion service itself guarantees that you are connecting to the entity you think you are. Dino already allows self-signed certs when communicating over Tor (see 81a5505). However, the same exception does not exist yet for HTTP uploads and downloads - causing these to fail over Tor. Therefore, in this commit, we add the same exception for uploads/downloads, by passing the host of the upload/download urls to the already existing invalid certificate connection handler. Note that this handler only allows certificates with type TlsCertificateFlags.UNKNOWN_CA. This means the certificate of your server must also include the onion http upload and download URLs in its certificate - otherwise, the file transfer will fail with TlsCertificateFlags.BAD_IDENTITY. | ||||
* | Bind soup session lifetime to File provider/sender lifetime | Marvin W | 2023-03-22 | 1 | -2/+3 |
| | | | | Required since libsoup 3.4. Fixes #1395 | ||||
* | Automatically select appropriate libsoup version | Marvin W | 2022-11-03 | 1 | -3/+3 |
| | |||||
* | Prepare http-files plugin for libsoup-3 support | Marvin W | 2022-04-09 | 1 | -12/+22 |
| | | | | | Note: ice plugin still depends on libsoup-2.4 and one can't have both in the same process, so this remains disabled by default | ||||
* | Allow cancellation of file transfers | Marvin W | 2022-03-30 | 1 | -1/+2 |
| | |||||
* | Remove ContentFilters | fiaxh | 2021-12-09 | 1 | -11/+3 |
| | | | | fixes #1129 #573 | ||||
* | Add RTP implementation as plugin | Marvin W | 2021-03-21 | 1 | -6/+0 |
| | |||||
* | Only query entity caps when we need them | fiaxh | 2020-07-16 | 1 | -5/+5 |
| | |||||
* | Add file upload preview | fiaxh | 2020-04-22 | 1 | -0/+8 |
| | | | | fixes #756 | ||||
* | Add support for HTTP Upload headers | Wiktor Kwapisiewicz | 2019-11-19 | 1 | -0/+4 |
| | | | | | | | | | | | Some services use Authorization header [0] to pass upload credential data. This avoids the token being exposed in server logs and is allowed by XEP-0363 since version 0.5.0. This change adds support for headers allowed in XEP-0363: Authorization, Expires and Cookie. [0]: https://xmpp.org/extensions/xep-0363.html#request | ||||
* | Fix reporting failed HTTP upload | Wiktor Kwapisiewicz | 2019-11-04 | 1 | -1/+1 |
| | | | | | | Status code can't be less than 200 and greater than or equal 300 at the same time. Using || instead of && marks all uploads that do not have 2xx status code as "failed". | ||||
* | Add JET support | Marvin W | 2019-09-16 | 1 | -16/+23 |
| | |||||
* | Fix specified size for encrypted file uploads | fiaxh | 2019-08-21 | 1 | -2/+2 |
| | |||||
* | Refactor file receive/send interfaces and UI | fiaxh | 2019-07-18 | 1 | -0/+126 |