we are not mutating headers, so do not ask for mutable headers
All checks were successful
AWS-Zig Build / build-zig-amd64-host (push) Successful in 3m3s

This commit is contained in:
Emil Lerch 2024-05-15 13:47:33 -07:00
parent c40539b7b0
commit c60c40f627
Signed by: lobo
GPG Key ID: A7B62D657EF764F8

View File

@ -306,7 +306,7 @@ pub fn verifyServerRequest(allocator: std.mem.Allocator, request: *std.http.Serv
}
pub const UnverifiedRequest = struct {
headers: []std.http.Header,
headers: []const std.http.Header,
target: []const u8,
method: std.http.Method,
allocator: std.mem.Allocator,