SmartSubtransportStream is the interface for streams used by the smart transport to read and write data from a subtransport.
| 199 | // SmartSubtransportStream is the interface for streams used by the smart |
| 200 | // transport to read and write data from a subtransport. |
| 201 | type SmartSubtransportStream interface { |
| 202 | io.Reader |
| 203 | io.Writer |
| 204 | |
| 205 | // Free releases the resources of the SmartSubtransportStream. |
| 206 | Free() |
| 207 | } |
| 208 | |
| 209 | // SmartSubtransportCallback is a function which creates a new subtransport for |
| 210 | // the smart transport. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…