# HG changeset patch # User Gregory Szorc # Date 1518064671 28800 # Node ID ac33dc94e1d53cf3fae22fd7e7c07805300ab42a # Parent 2f7290555c964421e6936a722dc80ebefb9aaf4f wireprotoserver: add version to SSH protocol names (API) We recently introduced version 2 of the SSH protocol. Like we did for the peer, we will need to differentiate version 1 and 2 of the server. So, we add version components to the advertised name of the protocol handler. Nothing in core looks for the old value. But an extension may. .. api:: SSH protocol handler now advertises its name internally as "ssh-v1" instead of "ssh." Differential Revision: https://phab.mercurial-scm.org/D2092 diff -r 2f7290555c96 -r ac33dc94e1d5 mercurial/wireprotoserver.py --- a/mercurial/wireprotoserver.py Wed Feb 07 20:27:36 2018 -0800 +++ b/mercurial/wireprotoserver.py Wed Feb 07 20:37:51 2018 -0800 @@ -367,7 +367,7 @@ @property def name(self): - return 'ssh' + return SSHV1 def getargs(self, args): data = {}