Skip to content
This repository was archived by the owner on Nov 21, 2024. It is now read-only.

Commit 02d7da3

Browse files
committed
fix renames not done before initial commit
1 parent f3f2fff commit 02d7da3

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

lib/XmppPrebind.php

+6-4
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public function connect($username, $password) {
138138
} elseif (in_array(self::ENCRYPTION_PLAIN, $this->mechanisms)) {
139139
$this->encryption = self::ENCRYPTION_PLAIN;
140140
} else {
141-
throw new BoshAutoLoginConnectionException("No encryption supported by the server is supported by this library.");
141+
throw new XmppPrebindConnectionException("No encryption supported by the server is supported by this library.");
142142
}
143143

144144
$this->debug($this->encryption, 'encryption used');
@@ -414,7 +414,7 @@ private function replyToChallengeResponse($challengeResponse) {
414414
$body = self::getBodyFromXml($challengeResponse);
415415
$challenge = base64_decode((string)$body->firstChild->nodeValue);
416416
if (strpos($challenge, 'rspauth') === false) {
417-
throw new BoshAutoLoginConnectionException('Invalid challenge response received');
417+
throw new XmppPrebindConnectionException('Invalid challenge response received');
418418
}
419419

420420
$domDocument = $this->buildBody();
@@ -573,7 +573,7 @@ private static function getBodyFromDomDocument($domDocument) {
573573
/**
574574
* Parse XML and return DOMNode of the body
575575
*
576-
* @uses BoshAutoogin::getBodyFromDomDocument()
576+
* @uses XmppPrebind::getBodyFromDomDocument()
577577
* @param string $xml
578578
* @return DOMNode
579579
*/
@@ -597,6 +597,8 @@ private function getAndIncrementRid() {
597597
}
598598

599599
/**
600-
* Standard BoshAutoLogin Exception
600+
* Standard XmppPrebind Exception
601601
*/
602602
class XmppPrebindException extends Exception{}
603+
604+
class XmppPrebindConnectionException extends XmppPrebindException {}

0 commit comments

Comments
 (0)