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:
authorPhilip Kelley <phkelley@hotmail.com>2012-10-29 21:41:14 +0400
committerPhilip Kelley <phkelley@hotmail.com>2012-11-01 17:02:33 +0400
commit41fb1ca0ec51ad1d2a14b911aab3215e42965d1b (patch)
tree8e2e8b7bfa136602a424a8e9f23189a5618a0c2e /src/pack-objects.h
parenta0ce87c51c1a3b1b3b674902148ad28d8e5fa32d (diff)
Reorganize transport architecture (squashed 3)
Diffstat (limited to 'src/pack-objects.h')
-rw-r--r--src/pack-objects.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pack-objects.h b/src/pack-objects.h
index 0d4854d0d..0a88f7dd7 100644
--- a/src/pack-objects.h
+++ b/src/pack-objects.h
@@ -13,6 +13,7 @@
#include "buffer.h"
#include "hash.h"
#include "oidmap.h"
+#include "netops.h"
#include "git2/oid.h"
@@ -81,7 +82,7 @@ struct git_packbuilder {
bool done;
};
-int git_packbuilder_send(git_packbuilder *pb, git_transport *t);
+int git_packbuilder_send(git_packbuilder *pb, gitno_socket *s);
int git_packbuilder_write_buf(git_buf *buf, git_packbuilder *pb);
#endif /* INCLUDE_pack_objects_h__ */