Checks whether the encoding is explicitly "identity".
(te []string)
| 552 | |
| 553 | // Checks whether the encoding is explicitly "identity". |
| 554 | func isIdentity(te []string) bool { return len(te) == 1 && te[0] == "identity" } |
| 555 | |
| 556 | // unsupportedTEError reports unsupported transfer-encodings. |
| 557 | type unsupportedTEError struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…