summaryrefslogtreecommitdiff
path: root/bundle.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-10-13 22:19:31 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-10-13 22:50:21 (GMT)
commit2727b71f0547f5181653940d279854e7924788fb (patch)
treee8a94c1d0020cfcd05b1fc36565776f00d062374 /bundle.h
parente9ee84cf28b6c7e5079ab3c020c86a44900a3f46 (diff)
downloadgit-2727b71f0547f5181653940d279854e7924788fb.zip
git-2727b71f0547f5181653940d279854e7924788fb.tar.gz
git-2727b71f0547f5181653940d279854e7924788fb.tar.bz2
bundle: add parse_bundle_header() helper function
Move most of the code from read_bundle_header() to parse_bundle_header() that takes a file descriptor that is already opened for reading, and make the former responsible only for opening the file and noticing errors. As a logical consequence of this, is_bundle() helper function can be implemented as a non-complaining variant of read_bundle_header() that does not return an open file descriptor, and can be used to tighten the check used to decide the use of bundle transport in transport_get() function. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'bundle.h')
-rw-r--r--bundle.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundle.h b/bundle.h
index e2aedd6..c6228e2 100644
--- a/bundle.h
+++ b/bundle.h
@@ -14,6 +14,7 @@ struct bundle_header {
struct ref_list references;
};
+int is_bundle(const char *path, int quiet);
int read_bundle_header(const char *path, struct bundle_header *header);
int create_bundle(struct bundle_header *header, const char *path,
int argc, const char **argv);