From a8e5e3a492378f6a9a2b4d55a4e7e5bab3f9dca4 Mon Sep 17 00:00:00 2001 From: teor Date: Tue, 30 Jan 2018 01:51:03 +1100 Subject: [PATCH 1/2] Add Link protocol version 5 to the supported protocols list in protover.c Part of #25070, bugfix on 0.3.1.1-alpha. --- src/or/protover.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/protover.c b/src/or/protover.c index 094609269..033e9063a 100644 --- a/src/or/protover.c +++ b/src/or/protover.c @@ -292,7 +292,7 @@ protover_get_supported_protocols(void) "HSDir=1-2 " "HSIntro=3-4 " "HSRend=1-2 " - "Link=1-4 " + "Link=1-5 " "LinkAuth=1,3 " "Microdesc=1-2 " "Relay=1-2"; From 9656ad32329f24d9d93e3e7067eb07cbe4ed0002 Mon Sep 17 00:00:00 2001 From: teor Date: Tue, 30 Jan 2018 01:55:56 +1100 Subject: [PATCH 2/2] Changes file for 25070 --- changes/bug25070 | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 changes/bug25070 diff --git a/changes/bug25070 b/changes/bug25070 new file mode 100644 index 000000000..c2f4e58c4 --- /dev/null +++ b/changes/bug25070 @@ -0,0 +1,3 @@ + o Major bugfixes (protocol versions): + - Add Link protocol version 5 to the supported protocols list. + Fixes bug 25070; bugfix on 0.3.1.1-alpha.