diff options
author | Brandon Williams <bmwill@google.com> | 2018-03-14 19:31:47 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-03-14 22:15:07 +0100 |
commit | 8f6982b4e16c60bba713a3b6592b2ff5c7476974 (patch) | |
tree | 2cc541fc7eac51ebf0a8aee415851f56d8eae64e /remote-curl.c | |
parent | transport: store protocol version (diff) | |
download | git-8f6982b4e16c60bba713a3b6592b2ff5c7476974.tar.xz git-8f6982b4e16c60bba713a3b6592b2ff5c7476974.zip |
protocol: introduce enum protocol_version value protocol_v2
Introduce protocol_v2, a new value for 'enum protocol_version'.
Subsequent patches will fill in the implementation of protocol_v2.
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'remote-curl.c')
-rw-r--r-- | remote-curl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/remote-curl.c b/remote-curl.c index 9f6d07683d..dae8a4a48d 100644 --- a/remote-curl.c +++ b/remote-curl.c @@ -185,6 +185,9 @@ static struct ref *parse_git_refs(struct discovery *heads, int for_push) PACKET_READ_GENTLE_ON_EOF); switch (discover_version(&reader)) { + case protocol_v2: + die("support for protocol v2 not implemented yet"); + break; case protocol_v1: case protocol_v0: get_remote_heads(&reader, &list, for_push ? REF_NORMAL : 0, |