(buf []byte)
| 165 | } |
| 166 | |
| 167 | func (self *httpSmartSubtransportStream) Write(buf []byte) (int, error) { |
| 168 | if self.httpError != nil { |
| 169 | return 0, self.httpError |
| 170 | } |
| 171 | return self.writer.Write(buf) |
| 172 | } |
| 173 | |
| 174 | func (self *httpSmartSubtransportStream) Free() { |
| 175 | if self.resp != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected