summaryrefslogtreecommitdiff
path: root/include/git2
diff options
context:
space:
mode:
authorCarlos Martín Nieto <carlos@cmartin.tk>2011-06-08 10:51:32 +0200
committerCarlos Martín Nieto <carlos@cmartin.tk>2011-06-26 18:18:12 +0200
commit8b9e8de5ce2fa4da75bf5b27a73f6d74140c6eaf (patch)
tree5437d3ffcdabd316f2098d46f49ad1e7759f11b4 /include/git2
parentb31803f3106f657a6cc6b8c4fd69e017edad2af8 (diff)
downloadlibgit2-8b9e8de5ce2fa4da75bf5b27a73f6d74140c6eaf.tar.gz
pkt-line: read capabilities
Try to read the server capabilities and add them to the git_pkt_ref struct. Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Diffstat (limited to 'include/git2')
-rw-r--r--include/git2/pkt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/git2/pkt.h b/include/git2/pkt.h
index 680dcc618..0b933abff 100644
--- a/include/git2/pkt.h
+++ b/include/git2/pkt.h
@@ -48,4 +48,5 @@ struct git_pkt_cmd {
struct git_pkt_ref {
enum git_pkt_type type;
git_remote_head head;
+ char *capabilities;
};