mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
fill out the http.Response.TLS field
This commit is contained in:
parent
2839cbdcff
commit
30c91149c2
4 changed files with 35 additions and 0 deletions
|
@ -11,6 +11,7 @@ import (
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go"
|
"github.com/lucas-clemente/quic-go"
|
||||||
|
"github.com/lucas-clemente/quic-go/internal/qtls"
|
||||||
"github.com/lucas-clemente/quic-go/internal/utils"
|
"github.com/lucas-clemente/quic-go/internal/utils"
|
||||||
"github.com/marten-seemann/qpack"
|
"github.com/marten-seemann/qpack"
|
||||||
)
|
)
|
||||||
|
@ -240,10 +241,12 @@ func (c *client) doRequest(
|
||||||
return nil, newConnError(errorGeneralProtocolError, err)
|
return nil, newConnError(errorGeneralProtocolError, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
connState := qtls.ToTLSConnectionState(c.session.ConnectionState())
|
||||||
res := &http.Response{
|
res := &http.Response{
|
||||||
Proto: "HTTP/3",
|
Proto: "HTTP/3",
|
||||||
ProtoMajor: 3,
|
ProtoMajor: 3,
|
||||||
Header: http.Header{},
|
Header: http.Header{},
|
||||||
|
TLS: &connState,
|
||||||
}
|
}
|
||||||
for _, hf := range hfs {
|
for _, hf := range hfs {
|
||||||
switch hf.Name {
|
switch hf.Name {
|
||||||
|
|
|
@ -14,6 +14,9 @@ import (
|
||||||
"github.com/golang/mock/gomock"
|
"github.com/golang/mock/gomock"
|
||||||
quic "github.com/lucas-clemente/quic-go"
|
quic "github.com/lucas-clemente/quic-go"
|
||||||
mockquic "github.com/lucas-clemente/quic-go/internal/mocks/quic"
|
mockquic "github.com/lucas-clemente/quic-go/internal/mocks/quic"
|
||||||
|
|
||||||
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
||||||
|
"github.com/lucas-clemente/quic-go/internal/qtls"
|
||||||
"github.com/lucas-clemente/quic-go/internal/utils"
|
"github.com/lucas-clemente/quic-go/internal/utils"
|
||||||
"github.com/marten-seemann/qpack"
|
"github.com/marten-seemann/qpack"
|
||||||
|
|
||||||
|
@ -221,6 +224,7 @@ var _ = Describe("Client", func() {
|
||||||
gomock.InOrder(
|
gomock.InOrder(
|
||||||
sess.EXPECT().HandshakeComplete().Return(handshakeCtx),
|
sess.EXPECT().HandshakeComplete().Return(handshakeCtx),
|
||||||
sess.EXPECT().OpenStreamSync(context.Background()).Return(str, nil),
|
sess.EXPECT().OpenStreamSync(context.Background()).Return(str, nil),
|
||||||
|
sess.EXPECT().ConnectionState().Return(qtls.ConnectionState{}),
|
||||||
)
|
)
|
||||||
str.EXPECT().Write(gomock.Any()).AnyTimes().DoAndReturn(func(p []byte) (int, error) { return len(p), nil })
|
str.EXPECT().Write(gomock.Any()).AnyTimes().DoAndReturn(func(p []byte) (int, error) { return len(p), nil })
|
||||||
str.EXPECT().Close()
|
str.EXPECT().Close()
|
||||||
|
@ -390,6 +394,7 @@ var _ = Describe("Client", func() {
|
||||||
req := request.WithContext(ctx)
|
req := request.WithContext(ctx)
|
||||||
sess.EXPECT().HandshakeComplete().Return(handshakeCtx)
|
sess.EXPECT().HandshakeComplete().Return(handshakeCtx)
|
||||||
sess.EXPECT().OpenStreamSync(ctx).Return(str, nil)
|
sess.EXPECT().OpenStreamSync(ctx).Return(str, nil)
|
||||||
|
sess.EXPECT().ConnectionState().Return(qtls.ConnectionState{})
|
||||||
buf := &bytes.Buffer{}
|
buf := &bytes.Buffer{}
|
||||||
str.EXPECT().Close().MaxTimes(1)
|
str.EXPECT().Close().MaxTimes(1)
|
||||||
|
|
||||||
|
@ -451,6 +456,7 @@ var _ = Describe("Client", func() {
|
||||||
|
|
||||||
It("decompresses the response", func() {
|
It("decompresses the response", func() {
|
||||||
sess.EXPECT().OpenStreamSync(context.Background()).Return(str, nil)
|
sess.EXPECT().OpenStreamSync(context.Background()).Return(str, nil)
|
||||||
|
sess.EXPECT().ConnectionState().Return(qtls.ConnectionState{})
|
||||||
buf := &bytes.Buffer{}
|
buf := &bytes.Buffer{}
|
||||||
rw := newResponseWriter(buf, utils.DefaultLogger)
|
rw := newResponseWriter(buf, utils.DefaultLogger)
|
||||||
rw.Header().Set("Content-Encoding", "gzip")
|
rw.Header().Set("Content-Encoding", "gzip")
|
||||||
|
@ -476,6 +482,7 @@ var _ = Describe("Client", func() {
|
||||||
|
|
||||||
It("only decompresses the response if the response contains the right content-encoding header", func() {
|
It("only decompresses the response if the response contains the right content-encoding header", func() {
|
||||||
sess.EXPECT().OpenStreamSync(context.Background()).Return(str, nil)
|
sess.EXPECT().OpenStreamSync(context.Background()).Return(str, nil)
|
||||||
|
sess.EXPECT().ConnectionState().Return(qtls.ConnectionState{})
|
||||||
buf := &bytes.Buffer{}
|
buf := &bytes.Buffer{}
|
||||||
rw := newResponseWriter(buf, utils.DefaultLogger)
|
rw := newResponseWriter(buf, utils.DefaultLogger)
|
||||||
rw.Write([]byte("not gzipped"))
|
rw.Write([]byte("not gzipped"))
|
||||||
|
|
|
@ -143,6 +143,25 @@ func GetConnectionState(conn *Conn) ConnectionState {
|
||||||
return conn.ConnectionState()
|
return conn.ConnectionState()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ToTLSConnectionState extracts the tls.ConnectionState
|
||||||
|
// Warning: Calling ExportKeyingMaterial won't work.
|
||||||
|
func ToTLSConnectionState(cs ConnectionState) tls.ConnectionState {
|
||||||
|
return tls.ConnectionState{
|
||||||
|
Version: cs.Version,
|
||||||
|
HandshakeComplete: cs.HandshakeComplete,
|
||||||
|
DidResume: cs.DidResume,
|
||||||
|
CipherSuite: cs.CipherSuite,
|
||||||
|
NegotiatedProtocol: cs.NegotiatedProtocol,
|
||||||
|
NegotiatedProtocolIsMutual: cs.NegotiatedProtocolIsMutual,
|
||||||
|
ServerName: cs.ServerName,
|
||||||
|
PeerCertificates: cs.PeerCertificates,
|
||||||
|
VerifiedChains: cs.VerifiedChains,
|
||||||
|
SignedCertificateTimestamps: cs.SignedCertificateTimestamps,
|
||||||
|
OCSPResponse: cs.OCSPResponse,
|
||||||
|
TLSUnique: cs.TLSUnique,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
type cipherSuiteTLS13 struct {
|
type cipherSuiteTLS13 struct {
|
||||||
ID uint16
|
ID uint16
|
||||||
KeyLen int
|
KeyLen int
|
||||||
|
|
|
@ -5,6 +5,7 @@ package qtls
|
||||||
import (
|
import (
|
||||||
"crypto"
|
"crypto"
|
||||||
"crypto/cipher"
|
"crypto/cipher"
|
||||||
|
"crypto/tls"
|
||||||
"net"
|
"net"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
|
|
||||||
|
@ -85,6 +86,11 @@ func GetConnectionState(conn *Conn) ConnectionState {
|
||||||
return conn.ConnectionStateWith0RTT()
|
return conn.ConnectionStateWith0RTT()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ToTLSConnectionState extracts the tls.ConnectionState
|
||||||
|
func ToTLSConnectionState(cs ConnectionState) tls.ConnectionState {
|
||||||
|
return cs.ConnectionState
|
||||||
|
}
|
||||||
|
|
||||||
type cipherSuiteTLS13 struct {
|
type cipherSuiteTLS13 struct {
|
||||||
ID uint16
|
ID uint16
|
||||||
KeyLen int
|
KeyLen int
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue