mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
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:
parent
f97c9bf88c
commit
2c4371b6a9
2 changed files with 12 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue