Browse Source

fix socket addr reuse

stanley-king 7 years ago
parent
commit
7c2d878112
1 changed files with 1 additions and 1 deletions
  1. 1 1
      helper/room/room_client.php

+ 1 - 1
helper/room/room_client.php

@@ -78,7 +78,7 @@ class room_client extends tcp_client
     }
 
     public function remote_addr() {
-        return "{$this->mHost}:{$this->mPort}";
+        return "tcp://{$this->mHost}:{$this->mPort}";
     }
 
     public function invite($roomid,$user)