Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 874dd410cecbc2953f624ab6ab9fda10d1650870 authored by Junio C Hamano on 30 May 2019, 17:56:29 UTC
Git 2.22-rc2
Tip revision: 874dd41
fetch-negotiator.c
#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);
}
back to top