Skip to content

Commit 30698e1

Browse files
authored
Resumable uploads are HTTP version independent (#202)
1 parent c46c01b commit 30698e1

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

protocol.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ implementations (open source or commercial) if you'd like to be listed on the
7070

7171
## Abstract
7272

73-
The protocol provides a mechanism for resumable file uploads via HTTP/1.1 ([RFC
74-
7230](https://tools.ietf.org/html/rfc7230)) and HTTP/2 ([RFC
75-
7540](https://tools.ietf.org/html/rfc7540)).
73+
The protocol provides a mechanism for resumable file uploads via HTTP ([RFC
74+
9110](https://www.rfc-editor.org/rfc/rfc9110.html)). The protocol does not depend
75+
on specific versions of HTTP.
7676

7777
## Notation
7878

@@ -486,7 +486,7 @@ The latter one SHOULD be used if the Server is keeping track of expired uploads.
486486
In both cases the Client SHOULD start a new upload.
487487

488488
The value of the `Upload-Expires` header MUST be in
489-
[RFC 7231](https://tools.ietf.org/html/rfc7231#section-7.1.1.1) datetime format.
489+
[RFC 9110](https://www.rfc-editor.org/rfc/rfc9110.html#name-date-time-formats) datetime format.
490490

491491
### Checksum
492492

@@ -516,10 +516,7 @@ If the hash cannot be calculated at the beginning of the upload, it MAY be
516516
included as a trailer. If the Server can handle trailers, this behavior MUST be
517517
announced by adding `checksum-trailer` to the `Tus-Extension` header.
518518
Trailers, also known as trailing headers, are headers which are sent after the
519-
request's body has been transmitted already. Following
520-
[RFC 7230](https://tools.ietf.org/html/rfc7230#section-4.1.2) they
521-
MUST be announced using the `Trailer` header and are only allowed in chunked
522-
transfers.
519+
request's body has been transmitted already.
523520

524521
#### Headers
525522

0 commit comments

Comments
 (0)