]> git.proxmox.com Git - libgit2.git/blob - src/remote.h
Merge remote-tracking branch 'origin/master' into fix-git-status-list-new-unreadable...
[libgit2.git] / src / remote.h
1 /*
2 * Copyright (C) the libgit2 contributors. All rights reserved.
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
7 #ifndef INCLUDE_remote_h__
8 #define INCLUDE_remote_h__
9
10 #include "git2/remote.h"
11 #include "git2/transport.h"
12
13 #include "refspec.h"
14 #include "vector.h"
15
16 #define GIT_REMOTE_ORIGIN "origin"
17
18 struct git_remote {
19 char *name;
20 char *url;
21 char *pushurl;
22 git_vector refs;
23 git_vector refspecs;
24 git_vector active_refspecs;
25 git_transport_cb transport_cb;
26 void *transport_cb_payload;
27 git_transport *transport;
28 git_repository *repo;
29 git_remote_callbacks callbacks;
30 git_transfer_progress stats;
31 unsigned int need_pack;
32 git_remote_autotag_option_t download_tags;
33 int check_cert;
34 int update_fetchhead;
35 };
36
37 const char* git_remote__urlfordirection(struct git_remote *remote, int direction);
38 int git_remote__get_http_proxy(git_remote *remote, bool use_ssl, char **proxy_url);
39
40 git_refspec *git_remote__matching_refspec(git_remote *remote, const char *refname);
41 git_refspec *git_remote__matching_dst_refspec(git_remote *remote, const char *refname);
42
43 #endif