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,9dry_run:1;10};1112int send_pack(struct send_pack_args *args,13int fd[], struct child_process *conn,14struct ref *remote_refs, struct extra_have_objects *extra_have);1516#endif