summaryrefslogtreecommitdiffstats
path: root/negotiator/noop.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-09 13:34:27 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-09 13:34:27 +0000
commit4dbdc42d9e7c3968ff7f690d00680419c9b8cb0f (patch)
tree47c1d492e9c956c1cd2b74dbd3b9d8b0db44dc4e /negotiator/noop.c
parentInitial commit. (diff)
downloadgit-4dbdc42d9e7c3968ff7f690d00680419c9b8cb0f.tar.xz
git-4dbdc42d9e7c3968ff7f690d00680419c9b8cb0f.zip
Adding upstream version 1:2.43.0.upstream/1%2.43.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'negotiator/noop.c')
-rw-r--r--negotiator/noop.c46
1 files changed, 46 insertions, 0 deletions
diff --git a/negotiator/noop.c b/negotiator/noop.c
new file mode 100644
index 0000000..de39028
--- /dev/null
+++ b/negotiator/noop.c
@@ -0,0 +1,46 @@
+#include "git-compat-util.h"
+#include "noop.h"
+#include "../commit.h"
+#include "../fetch-negotiator.h"
+
+static void known_common(struct fetch_negotiator *n UNUSED,
+ struct commit *c UNUSED)
+{
+ /* do nothing */
+}
+
+static void add_tip(struct fetch_negotiator *n UNUSED,
+ struct commit *c UNUSED)
+{
+ /* do nothing */
+}
+
+static const struct object_id *next(struct fetch_negotiator *n UNUSED)
+{
+ return NULL;
+}
+
+static int ack(struct fetch_negotiator *n UNUSED, struct commit *c UNUSED)
+{
+ /*
+ * This negotiator does not emit any commits, so there is no commit to
+ * be acknowledged. If there is any ack, there is a bug.
+ */
+ BUG("ack with noop negotiator, which does not emit any commits");
+ return 0;
+}
+
+static void release(struct fetch_negotiator *n UNUSED)
+{
+ /* nothing to release */
+}
+
+void noop_negotiator_init(struct fetch_negotiator *negotiator)
+{
+ negotiator->known_common = known_common;
+ negotiator->add_tip = add_tip;
+ negotiator->next = next;
+ negotiator->ack = ack;
+ negotiator->release = release;
+ negotiator->data = NULL;
+}