| 2716 | } |
| 2717 | |
| 2718 | void http_install_packfile(struct packed_git *p, |
| 2719 | struct packfile_list *list_to_remove_from) |
| 2720 | { |
| 2721 | struct odb_source_files *files = odb_source_files_downcast(the_repository->objects->sources); |
| 2722 | packfile_list_remove(list_to_remove_from, p); |
| 2723 | packfile_store_add_pack(files->packed, p); |
| 2724 | } |
| 2725 | |
| 2726 | struct http_pack_request *new_http_pack_request( |
| 2727 | const unsigned char *packed_git_hash, const char *base_url) { |
no test coverage detected