(copts *C.git_remote_connect_options)
| 152 | } |
| 153 | |
| 154 | func remoteConnectOptionsFromC(copts *C.git_remote_connect_options) *RemoteConnectOptions { |
| 155 | return &RemoteConnectOptions{ |
| 156 | ProxyOptions: proxyOptionsFromC(&copts.proxy_opts), |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | type ProxyType uint |
| 161 |
no test coverage detected
searching dependent graphs…