##// END OF EJS Templates
wireprotoserver: identify requests via version 2 of SSH protocol as such...
Gregory Szorc -
r36628:af0d38f0 default
parent child Browse files
Show More
@@ -371,6 +371,10 b' class sshv1protocolhandler(wireprototype'
371 class sshv2protocolhandler(sshv1protocolhandler):
371 class sshv2protocolhandler(sshv1protocolhandler):
372 """Protocol handler for version 2 of the SSH protocol."""
372 """Protocol handler for version 2 of the SSH protocol."""
373
373
374 @property
375 def name(self):
376 return wireprototypes.SSHV2
377
374 def _runsshserver(ui, repo, fin, fout, ev):
378 def _runsshserver(ui, repo, fin, fout, ev):
375 # This function operates like a state machine of sorts. The following
379 # This function operates like a state machine of sorts. The following
376 # states are defined:
380 # states are defined:
General Comments 0
You need to be logged in to leave comments. Login now