2007-09-11 07: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 12:55:00 +04:00
|
|
|
unsigned quiet:1,
|
|
|
|
keep_pack:1,
|
2007-09-19 08:49:35 +04:00
|
|
|
lock_pack:1,
|
2007-09-18 12:55:00 +04:00
|
|
|
use_thin_pack:1,
|
|
|
|
fetch_all:1,
|
|
|
|
verbose:1,
|
2008-03-04 06:27:33 +03:00
|
|
|
no_progress:1,
|
2009-10-31 03:47:42 +03:00
|
|
|
include_tag:1,
|
|
|
|
stateless_rpc:1;
|
2007-09-11 07:03:00 +04:00
|
|
|
};
|
|
|
|
|
2007-09-19 08:49:35 +04:00
|
|
|
struct ref *fetch_pack(struct fetch_pack_args *args,
|
2008-02-04 21:26:23 +03:00
|
|
|
int fd[], struct child_process *conn,
|
|
|
|
const struct ref *ref,
|
2007-09-19 08:49:35 +04:00
|
|
|
const char *dest,
|
|
|
|
int nr_heads,
|
|
|
|
char **heads,
|
|
|
|
char **pack_lockfile);
|
2007-09-11 07:03:00 +04:00
|
|
|
|
|
|
|
#endif
|