1#ifndef SEND_PACK_H2#define SEND_PACK_H34struct send_pack_args {5unsigned verbose:1,6quiet:1,7send_mirror:1,8force_update:1,9use_thin_pack:1,10use_ofs_delta:1,11dry_run:1;12};1314int send_pack(struct send_pack_args *args,15int fd[], struct child_process *conn,16struct ref *remote_refs, struct extra_have_objects *extra_have);1718#endif