2007-09-10 23:03:00 -04:00
|
|
|
#ifndef FETCH_PACK_H
|
|
|
|
#define FETCH_PACK_H
|
|
|
|
|
|
|
|
struct fetch_pack_args
|
|
|
|
{
|
|
|
|
const char *uploadpack;
|
|
|
|
int unpacklimit;
|
|
|
|
int depth;
|
2007-09-18 04:55:00 -04:00
|
|
|
unsigned quiet:1,
|
|
|
|
keep_pack:1,
|
2007-09-19 00:49:35 -04:00
|
|
|
lock_pack:1,
|
2007-09-18 04:55:00 -04:00
|
|
|
use_thin_pack:1,
|
|
|
|
fetch_all:1,
|
|
|
|
verbose:1,
|
2008-03-03 22:27:33 -05:00
|
|
|
no_progress:1,
|
2009-10-30 17:47:42 -07:00
|
|
|
include_tag:1,
|
|
|
|
stateless_rpc:1;
|
2007-09-10 23:03:00 -04:00
|
|
|
};
|
|
|
|
|
2007-09-19 00:49:35 -04:00
|
|
|
struct ref *fetch_pack(struct fetch_pack_args *args,
|
2008-02-04 13:26:23 -05:00
|
|
|
int fd[], struct child_process *conn,
|
|
|
|
const struct ref *ref,
|
2007-09-19 00:49:35 -04:00
|
|
|
const char *dest,
|
|
|
|
int nr_heads,
|
|
|
|
char **heads,
|
|
|
|
char **pack_lockfile);
|
2007-09-10 23:03:00 -04:00
|
|
|
|
|
|
|
#endif
|