]> git.proxmox.com Git - libgit2.git/blobdiff - src/fetch.h
Revert "Update d/ch for 0.28.5+dfsg.1-1 release -- from unstable branch"
[libgit2.git] / src / fetch.h
index 6ca21d5b4913c2851495cf23b1d8480da61a7e41..1c75af9c30699cb88e04d2ff6c5c91e076178919 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2009-2011 the libgit2 contributors
+ * Copyright (C) the libgit2 contributors. All rights reserved.
  *
  * This file is part of libgit2, distributed under the GNU GPL v2 with
  * a Linking Exception. For full terms see the included COPYING file.
@@ -7,7 +7,16 @@
 #ifndef INCLUDE_fetch_h__
 #define INCLUDE_fetch_h__
 
-int git_fetch_negotiate(git_remote *remote);
-int git_fetch_download_pack(char **out, git_remote *remote);
+#include "common.h"
+
+#include "git2/remote.h"
+
+#include "netops.h"
+
+int git_fetch_negotiate(git_remote *remote, const git_fetch_options *opts);
+
+int git_fetch_download_pack(git_remote *remote, const git_remote_callbacks *callbacks);
+
+int git_fetch_setup_walk(git_revwalk **out, git_repository *repo);
 
 #endif