diff options
author | Jonathan Tan <jonathantanmy@google.com> | 2018-06-15 00:54:28 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-06-15 17:44:24 +0200 |
commit | ec06283844a90c3e9440286401e9ad7d86daa5ae (patch) | |
tree | 57270c7f90133aa44cd9486248168321ab7527d6 /Makefile | |
parent | fetch-pack: move common check and marking together (diff) | |
download | git-ec06283844a90c3e9440286401e9ad7d86daa5ae.tar.xz git-ec06283844a90c3e9440286401e9ad7d86daa5ae.zip |
fetch-pack: introduce negotiator API
Introduce the new files fetch-negotiator.{h,c}, which contains an API
behind which the details of negotiation are abstracted. Currently, only
one algorithm is available: the existing one.
This patch is written to be easily reviewed: static functions are
moved verbatim from fetch-pack.c to negotiator/default.c, and it can be
seen that the lines replaced by negotiator->X() calls are present in the
X() functions respectively.
Signed-off-by: Jonathan Tan <jonathantanmy@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -859,6 +859,7 @@ LIB_OBJS += ewah/ewah_bitmap.o LIB_OBJS += ewah/ewah_io.o LIB_OBJS += ewah/ewah_rlw.o LIB_OBJS += exec-cmd.o +LIB_OBJS += fetch-negotiator.o LIB_OBJS += fetch-object.o LIB_OBJS += fetch-pack.o LIB_OBJS += fsck.o @@ -891,6 +892,7 @@ LIB_OBJS += merge-blobs.o LIB_OBJS += merge-recursive.o LIB_OBJS += mergesort.o LIB_OBJS += name-hash.o +LIB_OBJS += negotiator/default.o LIB_OBJS += notes.o LIB_OBJS += notes-cache.o LIB_OBJS += notes-merge.o |