git/negotiator/noop.c

#include "git-compat-util.h"
#include "noop.h"
#include "../fetch-negotiator.h"

static void known_common(struct fetch_negotiator *n UNUSED,
			 struct commit *c UNUSED)
{}

static void add_tip(struct fetch_negotiator *n UNUSED,
		    struct commit *c UNUSED)
{}

static const struct object_id *next(struct fetch_negotiator *n UNUSED)
{}

static int ack(struct fetch_negotiator *n UNUSED, struct commit *c UNUSED)
{}

static void release(struct fetch_negotiator *n UNUSED)
{}

void noop_negotiator_init(struct fetch_negotiator *negotiator)
{}