http3: add Date response header if not set (#3952)

* automatically add date header if not already set

* improve comment for Date header

---------

Co-authored-by: Marten Seemann <martenseemann@gmail.com>
This commit is contained in:
WeidiDeng 2023-07-13 01:30:33 +08:00 committed by GitHub
parent f97c9bf88c
commit 2c4371b6a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 3 deletions

View file

@ -55,6 +55,12 @@ func (w *responseWriter) WriteHeader(status int) {
if status < 100 || status >= 200 {
w.headerWritten = true
// Add Date header.
// This is what the standard library does.
// Can be disabled by setting the Date header to nil.
if _, ok := w.header["Date"]; !ok {
w.header.Set("Date", time.Now().UTC().Format(http.TimeFormat))
}
}
w.status = status