mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-07 09:05:58 +00:00

There are many ways how a transport might negotiate with the server, so instead of making it fit into the smart protocol model, let the transport do its thing. For now, the git protocol limits itself to send only 160 "have" lines so we don't flood the server. Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
8 lines
167 B
C
8 lines
167 B
C
#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);
|
|
|
|
#endif
|