This commit is contained in:
沈唁 2020-07-30 15:22:41 +08:00 committed by GitHub
parent c887a4f313
commit f00544ffc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -90,7 +90,7 @@ $ php bin/hyperf.php start
[INFO] HTTP Server listening at 0.0.0.0:9501
```
!> 当我们同时监听了 HTTP Server 的 9501 端口和 WebSocket Server 的 9502 端口时, WebSocket Client 可以通过 9501 和 9502 两个端口连接 WebSocket Server即连接 `ws://0.0.0.0:9502` 和 `ws://0.0.0.0:9502` 都可以成功。
!> 当我们同时监听了 HTTP Server 的 9501 端口和 WebSocket Server 的 9502 端口时, WebSocket Client 可以通过 9501 和 9502 两个端口连接 WebSocket Server即连接 `ws://0.0.0.0:9501` 和 `ws://0.0.0.0:9502` 都可以成功。
因为 Swoole\WebSocket\Server 继承自 Swoole\Http\Server可以使用 HTTP 触发所有 WebSocket 的推送,了解详情可查看 [Swoole 文档](https://wiki.swoole.com/#/websocket_server?id=websocketserver) onRequest 回调部分。