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