mirror of
https://github.com/golang/go.git
synced 2025-05-05 15:43:04 +00:00
net/http: revert h2_bundle.go formatting change from CL 368254
h2_bundle.go is automatically generated from x/net/http2. Any formatting changes within that file need to be first made upstream. This brings the contents of h2_bundle.go back in line with the upstream generator, fixing the cmd/internal/moddeps test that is currently failing on the longtest builders. For #49884 Change-Id: I5757240b77e250e0026b8a52a0e867e1578ec2d4 Reviewed-on: https://go-review.googlesource.com/c/go/+/371297 Trust: Bryan Mills <bcmills@google.com> Run-TryBot: Bryan Mills <bcmills@google.com> Reviewed-by: David Chase <drchase@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
This commit is contained in:
parent
7bdbc73be1
commit
9e85dc5f18
@ -1049,11 +1049,11 @@ var (
|
||||
16 << 10,
|
||||
}
|
||||
http2dataChunkPools = [...]sync.Pool{
|
||||
{New: func() any { return make([]byte, 1<<10) }},
|
||||
{New: func() any { return make([]byte, 2<<10) }},
|
||||
{New: func() any { return make([]byte, 4<<10) }},
|
||||
{New: func() any { return make([]byte, 8<<10) }},
|
||||
{New: func() any { return make([]byte, 16<<10) }},
|
||||
{New: func() interface{} { return make([]byte, 1<<10) }},
|
||||
{New: func() interface{} { return make([]byte, 2<<10) }},
|
||||
{New: func() interface{} { return make([]byte, 4<<10) }},
|
||||
{New: func() interface{} { return make([]byte, 8<<10) }},
|
||||
{New: func() interface{} { return make([]byte, 16<<10) }},
|
||||
}
|
||||
)
|
||||
|
||||
@ -1548,7 +1548,7 @@ func (h *http2FrameHeader) invalidate() { h.valid = false }
|
||||
// frame header bytes.
|
||||
// Used only by ReadFrameHeader.
|
||||
var http2fhBytes = sync.Pool{
|
||||
New: func() any {
|
||||
New: func() interface{} {
|
||||
buf := make([]byte, http2frameHeaderLen)
|
||||
return &buf
|
||||
},
|
||||
@ -1655,8 +1655,8 @@ type http2Framer struct {
|
||||
|
||||
debugFramer *http2Framer // only use for logging written writes
|
||||
debugFramerBuf *bytes.Buffer
|
||||
debugReadLoggerf func(string, ...any)
|
||||
debugWriteLoggerf func(string, ...any)
|
||||
debugReadLoggerf func(string, ...interface{})
|
||||
debugWriteLoggerf func(string, ...interface{})
|
||||
|
||||
frameCache *http2frameCache // nil if frames aren't reused (default)
|
||||
}
|
||||
@ -3061,7 +3061,7 @@ func http2curGoroutineID() uint64 {
|
||||
}
|
||||
|
||||
var http2littleBuf = sync.Pool{
|
||||
New: func() any {
|
||||
New: func() interface{} {
|
||||
buf := make([]byte, 64)
|
||||
return &buf
|
||||
},
|
||||
@ -3468,7 +3468,7 @@ func http2newBufferedWriter(w io.Writer) *http2bufferedWriter {
|
||||
const http2bufWriterPoolBufferSize = 4 << 10
|
||||
|
||||
var http2bufWriterPool = sync.Pool{
|
||||
New: func() any {
|
||||
New: func() interface{} {
|
||||
return bufio.NewWriterSize(nil, http2bufWriterPoolBufferSize)
|
||||
},
|
||||
}
|
||||
@ -3540,7 +3540,7 @@ type http2connectionStater interface {
|
||||
ConnectionState() tls.ConnectionState
|
||||
}
|
||||
|
||||
var http2sorterPool = sync.Pool{New: func() any { return new(http2sorter) }}
|
||||
var http2sorterPool = sync.Pool{New: func() interface{} { return new(http2sorter) }}
|
||||
|
||||
type http2sorter struct {
|
||||
v []string // owned by sorter
|
||||
@ -3781,7 +3781,7 @@ var (
|
||||
)
|
||||
|
||||
var http2responseWriterStatePool = sync.Pool{
|
||||
New: func() any {
|
||||
New: func() interface{} {
|
||||
rws := &http2responseWriterState{}
|
||||
rws.bw = bufio.NewWriterSize(http2chunkWriter{rws}, http2handlerChunkWriteSize)
|
||||
return rws
|
||||
@ -3793,7 +3793,7 @@ var (
|
||||
http2testHookOnConn func()
|
||||
http2testHookGetServerConn func(*http2serverConn)
|
||||
http2testHookOnPanicMu *sync.Mutex // nil except in tests
|
||||
http2testHookOnPanic func(sc *http2serverConn, panicVal any) (rePanic bool)
|
||||
http2testHookOnPanic func(sc *http2serverConn, panicVal interface{}) (rePanic bool)
|
||||
)
|
||||
|
||||
// Server is an HTTP/2 server.
|
||||
@ -4086,7 +4086,7 @@ func (s *http2Server) ServeConn(c net.Conn, opts *http2ServeConnOpts) {
|
||||
streams: make(map[uint32]*http2stream),
|
||||
readFrameCh: make(chan http2readFrameResult),
|
||||
wantWriteFrameCh: make(chan http2FrameWriteRequest, 8),
|
||||
serveMsgCh: make(chan any, 8),
|
||||
serveMsgCh: make(chan interface{}, 8),
|
||||
wroteFrameCh: make(chan http2frameWriteResult, 1), // buffered; one send in writeFrameAsync
|
||||
bodyReadCh: make(chan http2bodyReadMsg), // buffering doesn't matter either way
|
||||
doneServing: make(chan struct{}),
|
||||
@ -4216,7 +4216,7 @@ type http2serverConn struct {
|
||||
wantWriteFrameCh chan http2FrameWriteRequest // from handlers -> serve
|
||||
wroteFrameCh chan http2frameWriteResult // from writeFrameAsync -> serve, tickles more frame writes
|
||||
bodyReadCh chan http2bodyReadMsg // from handlers -> serve
|
||||
serveMsgCh chan any // misc messages & code to send to / run on the serve loop
|
||||
serveMsgCh chan interface{} // misc messages & code to send to / run on the serve loop
|
||||
flow http2flow // conn-wide (not stream-specific) outbound flow control
|
||||
inflow http2flow // conn-wide inbound flow control
|
||||
tlsState *tls.ConnectionState // shared by all handlers, like net/http
|
||||
@ -4351,13 +4351,13 @@ func (sc *http2serverConn) setConnState(state ConnState) {
|
||||
}
|
||||
}
|
||||
|
||||
func (sc *http2serverConn) vlogf(format string, args ...any) {
|
||||
func (sc *http2serverConn) vlogf(format string, args ...interface{}) {
|
||||
if http2VerboseLogs {
|
||||
sc.logf(format, args...)
|
||||
}
|
||||
}
|
||||
|
||||
func (sc *http2serverConn) logf(format string, args ...any) {
|
||||
func (sc *http2serverConn) logf(format string, args ...interface{}) {
|
||||
if lg := sc.hs.ErrorLog; lg != nil {
|
||||
lg.Printf(format, args...)
|
||||
} else {
|
||||
@ -4409,7 +4409,7 @@ func http2isClosedConnError(err error) bool {
|
||||
return false
|
||||
}
|
||||
|
||||
func (sc *http2serverConn) condlogf(err error, format string, args ...any) {
|
||||
func (sc *http2serverConn) condlogf(err error, format string, args ...interface{}) {
|
||||
if err == nil {
|
||||
return
|
||||
}
|
||||
@ -4679,7 +4679,7 @@ func (sc *http2serverConn) onIdleTimer() { sc.sendServeMsg(http2idleTimerMsg) }
|
||||
|
||||
func (sc *http2serverConn) onShutdownTimer() { sc.sendServeMsg(http2shutdownTimerMsg) }
|
||||
|
||||
func (sc *http2serverConn) sendServeMsg(msg any) {
|
||||
func (sc *http2serverConn) sendServeMsg(msg interface{}) {
|
||||
sc.serveG.checkNotOn() // NOT
|
||||
select {
|
||||
case sc.serveMsgCh <- msg:
|
||||
@ -4721,11 +4721,11 @@ func (sc *http2serverConn) readPreface() error {
|
||||
}
|
||||
|
||||
var http2errChanPool = sync.Pool{
|
||||
New: func() any { return make(chan error, 1) },
|
||||
New: func() interface{} { return make(chan error, 1) },
|
||||
}
|
||||
|
||||
var http2writeDataPool = sync.Pool{
|
||||
New: func() any { return new(http2writeData) },
|
||||
New: func() interface{} { return new(http2writeData) },
|
||||
}
|
||||
|
||||
// writeDataFromHandler writes DATA response frames from a handler on
|
||||
@ -6712,7 +6712,7 @@ func http2new400Handler(err error) HandlerFunc {
|
||||
// disabled. See comments on h1ServerShutdownChan above for why
|
||||
// the code is written this way.
|
||||
func http2h1ServerKeepAlivesDisabled(hs *Server) bool {
|
||||
var x any = hs
|
||||
var x interface{} = hs
|
||||
type I interface {
|
||||
doKeepAlives() bool
|
||||
}
|
||||
@ -9577,21 +9577,21 @@ var (
|
||||
http2errRequestHeaderListSize = errors.New("http2: request header list larger than peer's advertised limit")
|
||||
)
|
||||
|
||||
func (cc *http2ClientConn) logf(format string, args ...any) {
|
||||
func (cc *http2ClientConn) logf(format string, args ...interface{}) {
|
||||
cc.t.logf(format, args...)
|
||||
}
|
||||
|
||||
func (cc *http2ClientConn) vlogf(format string, args ...any) {
|
||||
func (cc *http2ClientConn) vlogf(format string, args ...interface{}) {
|
||||
cc.t.vlogf(format, args...)
|
||||
}
|
||||
|
||||
func (t *http2Transport) vlogf(format string, args ...any) {
|
||||
func (t *http2Transport) vlogf(format string, args ...interface{}) {
|
||||
if http2VerboseLogs {
|
||||
t.logf(format, args...)
|
||||
}
|
||||
}
|
||||
|
||||
func (t *http2Transport) logf(format string, args ...any) {
|
||||
func (t *http2Transport) logf(format string, args ...interface{}) {
|
||||
log.Printf(format, args...)
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user