- $server_cookie can be assigned directly

git-svn-id: http://phpseclib.svn.sourceforge.net/svnroot/phpseclib/trunk@60 21d32557-59b3-4da0-833f-c5933fad653e
This commit is contained in:
Jim Wigginton 2009-11-26 06:41:34 +00:00
parent 5d1f459db7
commit 9336c7f20d

View File

@ -41,7 +41,7 @@
* @author Jim Wigginton <terrafrost@php.net>
* @copyright MMVII Jim Wigginton
* @license http://www.gnu.org/licenses/lgpl.txt
* @version $Id: SSH2.php,v 1.26 2009-11-23 19:06:07 terrafrost Exp $
* @version $Id: SSH2.php,v 1.27 2009-11-26 06:41:34 terrafrost Exp $
* @link http://phpseclib.sourceforge.net
*/
@ -667,7 +667,7 @@ class Net_SSH2 {
$response = $kexinit_payload_server;
$this->_string_shift($response, 1); // skip past the message number (it should be SSH_MSG_KEXINIT)
extract(unpack('a16server_cookie', $this->_string_shift($response, 16)));
$server_cookie = $this->_string_shift($response, 16);
$temp = unpack('Nlength', $this->_string_shift($response, 4));
$this->kex_algorithms = explode(',', $this->_string_shift($response, $temp['length']));