diff options
author | Vincent Ambo <Vincent Ambo> | 2020-01-11T23·36+0000 |
---|---|---|
committer | Vincent Ambo <Vincent Ambo> | 2020-01-11T23·36+0000 |
commit | 1b593e1ea4d2af0f6444d9a7788d5d99abd6fde5 (patch) | |
tree | e3accb9beed5c4c1b5a05c99db71ab2841f0ed04 /fetch-negotiator.c |
Squashed 'third_party/git/' content from commit cb71568594
git-subtree-dir: third_party/git git-subtree-split: cb715685942260375e1eb8153b0768a376e4ece7
Diffstat (limited to 'fetch-negotiator.c')
-rw-r--r-- | fetch-negotiator.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/fetch-negotiator.c b/fetch-negotiator.c new file mode 100644 index 000000000000..d6d685cba012 --- /dev/null +++ b/fetch-negotiator.c @@ -0,0 +1,20 @@ +#include "git-compat-util.h" +#include "fetch-negotiator.h" +#include "negotiator/default.h" +#include "negotiator/skipping.h" + +void fetch_negotiator_init(struct fetch_negotiator *negotiator, + const char *algorithm) +{ + if (algorithm) { + if (!strcmp(algorithm, "skipping")) { + skipping_negotiator_init(negotiator); + return; + } else if (!strcmp(algorithm, "default")) { + /* Fall through to default initialization */ + } else { + die("unknown fetch negotiation algorithm '%s'", algorithm); + } + } + default_negotiator_init(negotiator); +} |