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 /protocol.h | |
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 'protocol.h')
-rw-r--r-- | protocol.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocol.h b/protocol.h index 1b2bc94a8d..2ad35e433c 100644 --- a/protocol.h +++ b/protocol.h @@ -5,6 +5,7 @@ enum protocol_version { protocol_unknown_version = -1, protocol_v0 = 0, protocol_v1 = 1, + protocol_v2 = 2, }; /* |