1#ifndef SEND_PACK_H2#define SEND_PACK_H34struct send_pack_args {5const char *url;6unsigned verbose:1,7quiet:1,8porcelain:1,9progress:1,10send_mirror:1,11force_update:1,12use_thin_pack:1,13use_ofs_delta:1,14dry_run:1,15push_cert:1,16stateless_rpc:1,17atomic:1;18};1920int send_pack(struct send_pack_args *args,21int fd[], struct child_process *conn,22struct ref *remote_refs, struct sha1_array *extra_have);2324#endif