(url string, auth transport.AuthMethod, insecure bool, clientCert, clientKey, caBundle []byte, proxyOpts transport.ProxyOptions)
| 533 | } |
| 534 | |
| 535 | func newUploadPackSession(url string, auth transport.AuthMethod, insecure bool, clientCert, clientKey, caBundle []byte, proxyOpts transport.ProxyOptions) (transport.UploadPackSession, error) { |
| 536 | c, ep, err := newClient(url, insecure, clientCert, clientKey, caBundle, proxyOpts) |
| 537 | if err != nil { |
| 538 | return nil, err |
| 539 | } |
| 540 | |
| 541 | return c.NewUploadPackSession(ep, auth) |
| 542 | } |
| 543 | |
| 544 | func newSendPackSession(url string, auth transport.AuthMethod, insecure bool, clientCert, clientKey, caBundle []byte, proxyOpts transport.ProxyOptions) (transport.ReceivePackSession, error) { |
| 545 | c, ep, err := newClient(url, insecure, clientCert, clientKey, caBundle, proxyOpts) |
no test coverage detected
searching dependent graphs…