Add ProxyOptions for push operations (#872) #880
|
@ -290,6 +290,9 @@ type PushOptions struct {
|
||||||
|
|
||||||
// Headers are extra headers for the push operation.
|
// Headers are extra headers for the push operation.
|
||||||
Headers []string
|
Headers []string
|
||||||
|
|
||||||
|
// Proxy options to use for this push operation
|
||||||
|
ProxyOptions ProxyOptions
|
||||||
}
|
}
|
||||||
|
|
||||||
type RemoteHead struct {
|
type RemoteHead struct {
|
||||||
|
@ -990,6 +993,7 @@ func populatePushOptions(copts *C.git_push_options, opts *PushOptions, errorTarg
|
||||||
strings: makeCStringsFromStrings(opts.Headers),
|
strings: makeCStringsFromStrings(opts.Headers),
|
||||||
}
|
}
|
||||||
populateRemoteCallbacks(&copts.callbacks, &opts.RemoteCallbacks, errorTarget)
|
populateRemoteCallbacks(&copts.callbacks, &opts.RemoteCallbacks, errorTarget)
|
||||||
|
populateProxyOptions(&copts.proxy_opts, &opts.ProxyOptions)
|
||||||
return copts
|
return copts
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -999,6 +1003,7 @@ func freePushOptions(copts *C.git_push_options) {
|
||||||
}
|
}
|
||||||
untrackCallbacksPayload(&copts.callbacks)
|
untrackCallbacksPayload(&copts.callbacks)
|
||||||
freeStrarray(&copts.custom_headers)
|
freeStrarray(&copts.custom_headers)
|
||||||
|
freeProxyOptions(&copts.proxy_opts)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fetch performs a fetch operation. refspecs specifies which refspecs
|
// Fetch performs a fetch operation. refspecs specifies which refspecs
|
||||||
|
|
Loading…
Reference in New Issue