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:
authorCarlos Martín Nieto <carlos@cmartin.tk>2012-07-24 16:23:16 +0400
committerCarlos Martín Nieto <carlos@cmartin.tk>2012-07-30 22:25:10 +0400
commit64d01de8a7802ebec031f921496747bf09426df1 (patch)
tree92827c074298b1a21c50f72d43a99a573b1c720b /src/common.h
parent50364dd892ae6726ff34e1842711e29d0f20c51d (diff)
remote: start moving the protocol to a common area
For the transition, http is going to keep its own logic until the git/common code catches up with the implied multi_ack that http has. This also has the side-effect of making the code cleaner and more correct regardingt he protocol.
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h
index 1db308fc7..1d85428b3 100644
--- a/src/common.h
+++ b/src/common.h
@@ -59,4 +59,7 @@ void giterr_set_regex(const regex_t *regex, int error_code);
#include "util.h"
+typedef struct git_transport git_transport;
+typedef struct gitno_buffer gitno_buffer;
+
#endif /* INCLUDE_common_h__ */