diff options
author | Kim Alvefur <zash@zash.se> | 2021-05-16 16:52:59 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-05-16 16:52:59 +0200 |
commit | f5757cae7fff33b74783b8006cbfc1a57ec7c4be (patch) | |
tree | 1beabaad97e9c16eb4a500a3f0efd2a0de4ff247 /doc | |
parent | 8164b929893a089b85be15efd8c599693fef1b7b (diff) | |
download | prosody-f5757cae7fff33b74783b8006cbfc1a57ec7c4be.tar.gz prosody-f5757cae7fff33b74783b8006cbfc1a57ec7c4be.zip |
mod_http_file_share: Support download resumption via Range requests
Only a starting point is supported due to the way response:send_file()
sends everything it gets from the provided file handle but does not have
any way to specify how much to read.
This matches what Conversations appears to be doing.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/doap.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/doap.xml b/doc/doap.xml index 75b4aac8..c62b990f 100644 --- a/doc/doap.xml +++ b/doc/doap.xml @@ -52,6 +52,7 @@ <implements rdf:resource="https://www.rfc-editor.org/info/rfc6121"/> <implements rdf:resource="https://www.rfc-editor.org/info/rfc6122"/> <implements rdf:resource="https://www.rfc-editor.org/info/rfc6455"/> + <implements rdf:resource="https://www.rfc-editor.org/info/rfc7233"/> <implements rdf:resource="https://www.rfc-editor.org/info/rfc7301"/> <implements rdf:resource="https://www.rfc-editor.org/info/rfc7395"/> <implements rdf:resource="https://www.rfc-editor.org/info/rfc7590"/> |