Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 74583d89127e21255c12dd3c8a3bf60b497d7d03 authored by Junio C Hamano on 03 June 2019, 18:25:12 UTC
Git 2.22-rc3
Tip revision: 74583d8
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