mirror of
https://github.com/phpseclib/phpseclib.git
synced 2025-01-15 19:16:55 +00:00
Merge branch '2.0'
This commit is contained in:
commit
da0c41ddac
@ -1071,10 +1071,20 @@ class SSH2
|
|||||||
}
|
}
|
||||||
|
|
||||||
$line.= "$temp\n";
|
$line.= "$temp\n";
|
||||||
if (substr($line, -2) == "\r\n") {
|
|
||||||
break;
|
// quoting RFC4253, "Implementers who wish to maintain
|
||||||
}
|
// compatibility with older, undocumented versions of this protocol may
|
||||||
|
// want to process the identification string without expecting the
|
||||||
|
// presence of the carriage return character for reasons described in
|
||||||
|
// Section 5 of this document."
|
||||||
|
|
||||||
|
//if (substr($line, -2) == "\r\n") {
|
||||||
|
// break;
|
||||||
|
//}
|
||||||
|
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
$data.= $line;
|
$data.= $line;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user