mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
http3: add request to response (#3608)
This commit is contained in:
parent
af30cef57c
commit
047f9b6ffa
2 changed files with 2 additions and 0 deletions
|
@ -390,6 +390,7 @@ func (c *client) doRequest(req *http.Request, str quic.Stream, opt RoundTripOpt,
|
||||||
ProtoMajor: 3,
|
ProtoMajor: 3,
|
||||||
Header: http.Header{},
|
Header: http.Header{},
|
||||||
TLS: &connState,
|
TLS: &connState,
|
||||||
|
Request: req,
|
||||||
}
|
}
|
||||||
for _, hf := range hfs {
|
for _, hf := range hfs {
|
||||||
switch hf.Name {
|
switch hf.Name {
|
||||||
|
|
|
@ -741,6 +741,7 @@ var _ = Describe("Client", func() {
|
||||||
Expect(rsp.Proto).To(Equal("HTTP/3.0"))
|
Expect(rsp.Proto).To(Equal("HTTP/3.0"))
|
||||||
Expect(rsp.ProtoMajor).To(Equal(3))
|
Expect(rsp.ProtoMajor).To(Equal(3))
|
||||||
Expect(rsp.StatusCode).To(Equal(418))
|
Expect(rsp.StatusCode).To(Equal(418))
|
||||||
|
Expect(rsp.Request).ToNot(BeNil())
|
||||||
})
|
})
|
||||||
|
|
||||||
It("doesn't close the request stream, with DontCloseRequestStream set", func() {
|
It("doesn't close the request stream, with DontCloseRequestStream set", func() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue