diff options
author | Philip Kelley <phkelley@hotmail.com> | 2014-06-25 13:20:27 -0400 |
---|---|---|
committer | Philip Kelley <phkelley@hotmail.com> | 2014-06-26 22:34:37 -0400 |
commit | 1697cd6ff5d29c95106ff4b7bd56ebba5d51b8c1 (patch) | |
tree | 05e0f995c3782e0dd9b220b0fcc8ad09fc8dd96f /src/remote.h | |
parent | 86cb34cb110c6a1ec6e1d1525418c70f2f617d6b (diff) | |
download | libgit2-1697cd6ff5d29c95106ff4b7bd56ebba5d51b8c1.tar.gz |
Improvements to git_transport extensibility
git_remote_set_transport now takes a transport factory rather than a transport
git_clone_options now allows the caller to specify a remote creation callback
Diffstat (limited to 'src/remote.h')
-rw-r--r-- | src/remote.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/remote.h b/src/remote.h index 4164a14b3..47c4f7221 100644 --- a/src/remote.h +++ b/src/remote.h @@ -22,6 +22,8 @@ struct git_remote { git_vector refs; git_vector refspecs; git_vector active_refspecs; + git_transport_cb transport_cb; + void *transport_cb_payload; git_transport *transport; git_repository *repo; git_remote_callbacks callbacks; |