Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Martí <vicent@github.com>2012-07-27 20:52:44 +0400
committerVicent Martí <vicent@github.com>2012-07-27 20:52:44 +0400
commit60d5cc57473ad6ecf05f50d15bb101e3348897f0 (patch)
tree27773ac98806290b456cf3f29a5dd4ede40c5895 /src/remote.h
parentf0244463ad280664d2cac950fcc5d6ff550905d1 (diff)
parentb3aaa7a7c887006d38b7262b73575d40f51beca5 (diff)
Merge pull request #834 from carlosmn/network-callbacks
Add a struct for network callbacks
Diffstat (limited to 'src/remote.h')
-rw-r--r--src/remote.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/remote.h b/src/remote.h
index 623d40c87..5083b9912 100644
--- a/src/remote.h
+++ b/src/remote.h
@@ -20,6 +20,7 @@ struct git_remote {
struct git_refspec push;
git_transport *transport;
git_repository *repo;
+ git_remote_callbacks callbacks;
unsigned int need_pack:1,
check_cert;
};