Staging
v0.5.1
Revision 35ee755a8c43bcb3c2786522d423f006c23d32df authored by Junio C Hamano on 19 February 2019, 21:20:23 UTC, committed by Junio C Hamano on 19 February 2019, 21:20:23 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent c5b456b
Raw File
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