type net/http.http2serverConn
71 uses
net/http (current package)
h2_bundle.go#L3646: http2testHookGetServerConn func(*http2serverConn)
h2_bundle.go#L3648: http2testHookOnPanic func(sc *http2serverConn, panicVal interface{}) (rePanic bool)
h2_bundle.go#L3744: activeConns map[*http2serverConn]struct{}
h2_bundle.go#L3747: func (s *http2serverInternalState) registerConn(sc *http2serverConn) {
h2_bundle.go#L3756: func (s *http2serverInternalState) unregisterConn(sc *http2serverConn) {
h2_bundle.go#L3788: conf.state = &http2serverInternalState{activeConns: make(map[*http2serverConn]struct{})}
h2_bundle.go#L3934: sc := &http2serverConn{
h2_bundle.go#L4050: func (sc *http2serverConn) rejectConn(err http2ErrCode, debug string) {
h2_bundle.go#L4058: type http2serverConn struct {
h2_bundle.go#L4116: func (sc *http2serverConn) maxHeaderListSize() uint32 {
h2_bundle.go#L4128: func (sc *http2serverConn) curOpenStreams() uint32 {
h2_bundle.go#L4142: sc *http2serverConn
h2_bundle.go#L4164: func (sc *http2serverConn) Framer() *http2Framer { return sc.framer }
h2_bundle.go#L4166: func (sc *http2serverConn) CloseConn() error { return sc.conn.Close() }
h2_bundle.go#L4168: func (sc *http2serverConn) Flush() error { return sc.bw.Flush() }
h2_bundle.go#L4170: func (sc *http2serverConn) HeaderEncoder() (*hpack.Encoder, *bytes.Buffer) {
h2_bundle.go#L4174: func (sc *http2serverConn) state(streamID uint32) (http2streamState, *http2stream) {
h2_bundle.go#L4201: func (sc *http2serverConn) setConnState(state ConnState) {
h2_bundle.go#L4207: func (sc *http2serverConn) vlogf(format string, args ...interface{}) {
h2_bundle.go#L4213: func (sc *http2serverConn) logf(format string, args ...interface{}) {
h2_bundle.go#L4265: func (sc *http2serverConn) condlogf(err error, format string, args ...interface{}) {
h2_bundle.go#L4277: func (sc *http2serverConn) canonicalHeader(v string) string {
h2_bundle.go#L4310: func (sc *http2serverConn) readFrames() {
h2_bundle.go#L4342: func (sc *http2serverConn) writeFrameAsync(wr http2FrameWriteRequest) {
h2_bundle.go#L4347: func (sc *http2serverConn) closeAllStreamsOnConnClose() {
h2_bundle.go#L4354: func (sc *http2serverConn) stopShutdownTimer() {
h2_bundle.go#L4361: func (sc *http2serverConn) notePanic() {
h2_bundle.go#L4376: func (sc *http2serverConn) serve() {
h2_bundle.go#L4494: func (sc *http2serverConn) awaitGracefulShutdown(sharedCh <-chan struct{}, privateCh chan struct{}) {
h2_bundle.go#L4512: func (sc *http2serverConn) onSettingsTimer() { sc.sendServeMsg(http2settingsTimerMsg) }
h2_bundle.go#L4514: func (sc *http2serverConn) onIdleTimer() { sc.sendServeMsg(http2idleTimerMsg) }
h2_bundle.go#L4516: func (sc *http2serverConn) onShutdownTimer() { sc.sendServeMsg(http2shutdownTimerMsg) }
h2_bundle.go#L4518: func (sc *http2serverConn) sendServeMsg(msg interface{}) {
h2_bundle.go#L4531: func (sc *http2serverConn) readPreface() error {
h2_bundle.go#L4569: func (sc *http2serverConn) writeDataFromHandler(stream *http2stream, data []byte, endStream bool) error {
h2_bundle.go#L4616: func (sc *http2serverConn) writeFrameFromHandler(wr http2FrameWriteRequest) error {
h2_bundle.go#L4636: func (sc *http2serverConn) writeFrame(wr http2FrameWriteRequest) {
h2_bundle.go#L4700: func (sc *http2serverConn) startFrameWrite(wr http2FrameWriteRequest) {
h2_bundle.go#L4750: func (sc *http2serverConn) wroteFrame(res http2frameWriteResult) {
h2_bundle.go#L4814: func (sc *http2serverConn) scheduleFrameWrite() {
h2_bundle.go#L4862: func (sc *http2serverConn) startGracefulShutdown() {
h2_bundle.go#L4883: func (sc *http2serverConn) startGracefulShutdownInternal() {
h2_bundle.go#L4887: func (sc *http2serverConn) goAway(code http2ErrCode) {
h2_bundle.go#L4898: func (sc *http2serverConn) shutDownIn(d time.Duration) {
h2_bundle.go#L4903: func (sc *http2serverConn) resetStream(se http2StreamError) {
h2_bundle.go#L4914: func (sc *http2serverConn) processFrameFromReader(res http2readFrameResult) bool {
h2_bundle.go#L4966: func (sc *http2serverConn) processFrame(f http2Frame) error {
h2_bundle.go#L5004: func (sc *http2serverConn) processPing(f *http2PingFrame) error {
h2_bundle.go#L5026: func (sc *http2serverConn) processWindowUpdate(f *http2WindowUpdateFrame) error {
h2_bundle.go#L5058: func (sc *http2serverConn) processResetStream(f *http2RSTStreamFrame) error {
h2_bundle.go#L5077: func (sc *http2serverConn) closeStream(st *http2stream, err error) {
h2_bundle.go#L5112: func (sc *http2serverConn) processSettings(f *http2SettingsFrame) error {
h2_bundle.go#L5140: func (sc *http2serverConn) processSetting(s http2Setting) error {
h2_bundle.go#L5173: func (sc *http2serverConn) processSettingInitialWindowSize(val uint32) error {
h2_bundle.go#L5201: func (sc *http2serverConn) processData(f *http2DataFrame) error {
h2_bundle.go#L5290: func (sc *http2serverConn) processGoAway(f *http2GoAwayFrame) error {
h2_bundle.go#L5342: func (sc *http2serverConn) processHeaders(f *http2MetaHeadersFrame) error {
h2_bundle.go#L5498: func (sc *http2serverConn) processPriority(f *http2PriorityFrame) error {
h2_bundle.go#L5509: func (sc *http2serverConn) newStream(id, pusherID uint32, state http2streamState) *http2stream {
h2_bundle.go#L5546: func (sc *http2serverConn) newWriterAndRequest(st *http2stream, f *http2MetaHeadersFrame) (*http2responseWriter, *Request, error) {
h2_bundle.go#L5616: func (sc *http2serverConn) newWriterAndRequestNoBody(st *http2stream, rp http2requestParam) (*http2responseWriter, *Request, error) {
h2_bundle.go#L5702: func (sc *http2serverConn) runHandler(rw *http2responseWriter, req *Request, handler func(ResponseWriter, *Request)) {
h2_bundle.go#L5739: func (sc *http2serverConn) writeHeaders(st *http2stream, headerData *http2writeResHeaders) error {
h2_bundle.go#L5771: func (sc *http2serverConn) write100ContinueHeaders(st *http2stream) {
h2_bundle.go#L5788: func (sc *http2serverConn) noteBodyReadFromHandler(st *http2stream, n int, err error) {
h2_bundle.go#L5798: func (sc *http2serverConn) noteBodyRead(st *http2stream, n int) {
h2_bundle.go#L5809: func (sc *http2serverConn) sendWindowUpdate(st *http2stream, n int) {
h2_bundle.go#L5825: func (sc *http2serverConn) sendWindowUpdate32(st *http2stream, n int32) {
h2_bundle.go#L5857: conn *http2serverConn
h2_bundle.go#L5913: conn *http2serverConn
h2_bundle.go#L6398: func (sc *http2serverConn) startPush(msg *http2startPushRequest) {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |