diff options
-rw-r--r-- | src/Server.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Server.php b/src/Server.php index 0496b85..87b66cc 100644 --- a/src/Server.php +++ b/src/Server.php @@ -110,7 +110,7 @@ abstract class Server $clientAddr = $this->getSessionData('client_addr'); if (!$clientAddr) { - return $this->fail("Unknown client IP address for the attached session", 500); + return $this->fail("Unknown client IP address for the attached session", 403); } if ($this->generateSessionId($brokerId, $token, $clientAddr) != $sid) { |