summaryrefslogtreecommitdiff
path: root/transport.h
diff options
context:
space:
mode:
authorDaniel Barkalow <barkalow@iabervon.org>2007-09-11 03:03:11 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-09-19 10:22:30 (GMT)
commitc29727d5241be0fee2265fbbe65d1b275b01dc1c (patch)
tree30fee61be81b82ebcebad33d88b42e1a900c6e69 /transport.h
parentd71ab17470ab2011c7cb398b75385bb0d0c4bdb4 (diff)
downloadgit-c29727d5241be0fee2265fbbe65d1b275b01dc1c.zip
git-c29727d5241be0fee2265fbbe65d1b275b01dc1c.tar.gz
git-c29727d5241be0fee2265fbbe65d1b275b01dc1c.tar.bz2
Add fetch methods to transport library.
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport.h')
-rw-r--r--transport.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/transport.h b/transport.h
index 5c2eb95..5b0a6b0 100644
--- a/transport.h
+++ b/transport.h
@@ -29,6 +29,11 @@ struct transport_ops {
int (*set_option)(struct transport *connection, const char *name,
const char *value);
+ struct ref *(*get_refs_list)(const struct transport *transport);
+ int (*fetch_refs)(const struct transport *transport,
+ int nr_refs, char **refs);
+ int (*fetch_objs)(const struct transport *transport,
+ int nr_objs, char **objs);
int (*push)(struct transport *connection, int refspec_nr, const char **refspec, int flags);
int (*disconnect)(struct transport *connection);
@@ -40,12 +45,24 @@ struct transport *transport_get(struct remote *remote, const char *url,
/* Transport options which apply to git:// and scp-style URLs */
+/* The program to use on the remote side to send a pack */
+#define TRANS_OPT_UPLOADPACK "uploadpack"
+
/* The program to use on the remote side to receive a pack */
#define TRANS_OPT_RECEIVEPACK "receivepack"
/* Transfer the data as a thin pack if not null */
#define TRANS_OPT_THIN "thin"
+/* Keep the pack that was transferred if not null */
+#define TRANS_OPT_KEEP "keep"
+
+/* Unpack the objects if fewer than this number of objects are fetched */
+#define TRANS_OPT_UNPACKLIMIT "unpacklimit"
+
+/* Limit the depth of the fetch if not null */
+#define TRANS_OPT_DEPTH "depth"
+
/**
* Returns 0 if the option was used, non-zero otherwise. Prints a
* message to stderr if the option is not used.
@@ -56,6 +73,10 @@ int transport_set_option(struct transport *transport, const char *name,
int transport_push(struct transport *connection,
int refspec_nr, const char **refspec, int flags);
+struct ref *transport_get_remote_refs(struct transport *transport);
+
+int transport_fetch_refs(struct transport *transport, struct ref *refs);
+
int transport_disconnect(struct transport *transport);
#endif