| 22 | ) |
| 23 | |
| 24 | type wdaDriver struct { |
| 25 | Driver |
| 26 | |
| 27 | // default port |
| 28 | defaultConn gidevice.InnerConn |
| 29 | |
| 30 | // mjpeg port |
| 31 | mjpegUSBConn gidevice.InnerConn // via USB |
| 32 | mjpegHTTPConn net.Conn // via HTTP |
| 33 | mjpegClient *http.Client |
| 34 | } |
| 35 | |
| 36 | func (wd *wdaDriver) resetSession() error { |
| 37 | capabilities := NewCapabilities() |
nothing calls this directly
no outgoing calls
no test coverage detected