2021-01-19 09:20:52 +00:00
|
|
|
---
|
|
|
|
module: [kind=event] websocket_failure
|
|
|
|
see: http.websocketAsync To send an HTTP request.
|
|
|
|
---
|
|
|
|
|
2023-03-15 21:52:13 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: 2021 The CC: Tweaked Developers
|
|
|
|
|
2023-03-28 09:23:28 +00:00
|
|
|
SPDX-License-Identifier: MPL-2.0
|
2023-03-15 21:52:13 +00:00
|
|
|
-->
|
|
|
|
|
2023-08-24 09:48:30 +00:00
|
|
|
The [`websocket_failure`] event is fired when a WebSocket connection request fails.
|
2021-01-19 09:20:52 +00:00
|
|
|
|
2023-08-24 09:48:30 +00:00
|
|
|
This event is normally handled inside [`http.websocket`], but it can still be seen when using [`http.websocketAsync`].
|
2021-01-19 09:20:52 +00:00
|
|
|
|
|
|
|
## Return Values
|
2023-08-24 09:48:30 +00:00
|
|
|
1. [`string`]: The event name.
|
|
|
|
2. [`string`]: The URL of the site requested.
|
|
|
|
3. [`string`]: An error describing the failure.
|
2021-01-19 09:20:52 +00:00
|
|
|
|
|
|
|
## Example
|
|
|
|
Prints an error why the website cannot be contacted:
|
|
|
|
```lua
|
2021-01-23 14:58:08 +00:00
|
|
|
local myURL = "wss://example.tweaked.cc/not-a-websocket"
|
2021-01-19 09:20:52 +00:00
|
|
|
http.websocketAsync(myURL)
|
|
|
|
local event, url, err
|
|
|
|
repeat
|
|
|
|
event, url, err = os.pullEvent("websocket_failure")
|
|
|
|
until url == myURL
|
|
|
|
print("The URL " .. url .. " could not be reached: " .. err)
|
|
|
|
```
|