(e ErrorCode, debug string)
| 96 | } |
| 97 | |
| 98 | func NewGoAwayError(e ErrorCode, debug string) Error { |
| 99 | return Error{ |
| 100 | code: e, |
| 101 | debug: debug, |
| 102 | frameType: FrameGoAway, |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | func NewResetStreamError(e ErrorCode, debug string) Error { |
| 107 | return Error{ |
no outgoing calls
no test coverage detected