type golang.org/x/net/http2.connError
9 uses
golang.org/x/net/http2 (current package)
errors.go#L97: type connError struct {
errors.go#L102: func (e connError) Error() string {
frame.go#L505: if ce, ok := err.(connError); ok {
frame.go#L598: return nil, connError{ErrCodeProtocol, "DATA frame with stream ID 0"}
frame.go#L616: return nil, connError{ErrCodeProtocol, "pad size larger than data payload"}
frame.go#L1000: return nil, connError{ErrCodeProtocol, "HEADERS frame with stream ID 0"}
frame.go#L1130: return nil, connError{ErrCodeProtocol, "PRIORITY frame with stream ID 0"}
frame.go#L1133: return nil, connError{ErrCodeFrameSize, fmt.Sprintf("PRIORITY frame payload size was %d; want 5", len(payload))}
frame.go#L1207: return nil, connError{ErrCodeProtocol, "CONTINUATION frame with stream ID 0"}
 |
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. |