Change example servers
The example.com server in the README no longer works (https://github.com/FredyH/GWSockets/issues/29). Same goes for the echo.websocket.org servers, visiting or websocket connecting to said domain now just shows that the service no longer available. All references to these have been changed to echo.websocket.events, which is a working alternative for both plain and secure connections.
This commit is contained in:
parent
f428bd1459
commit
b731b8ea3f
@ -24,7 +24,7 @@ require("gwsockets")
|
||||
|
||||
*NOTE:* URL's must include the scheme ( Either `ws://` or `wss://` )
|
||||
|
||||
`Example: "wss://example.com:9999/api/socketserver"`
|
||||
`Example: "wss://echo.websocket.events/api/socketserver"`
|
||||
|
||||
```LUA
|
||||
GWSockets.createWebSocket( url, verifyCertificate=true )
|
||||
@ -108,7 +108,7 @@ require("gwsockets")
|
||||
|
||||
```LUA
|
||||
require("gwsockets")
|
||||
local socket = GWSockets.createWebSocket("wss://echo.websocket.org/")
|
||||
local socket = GWSockets.createWebSocket("wss://echo.websocket.events/")
|
||||
|
||||
function socket:onMessage(txt)
|
||||
print("Received: ", txt)
|
||||
|
@ -1,5 +1,5 @@
|
||||
require("gwsockets")
|
||||
local socket = GWSockets.createWebSocket("wss://echo.websocket.org/")
|
||||
local socket = GWSockets.createWebSocket("wss://echo.websocket.events/")
|
||||
|
||||
function socket:onMessage(txt)
|
||||
print("Received: ", txt)
|
||||
|
@ -502,7 +502,7 @@ int main()
|
||||
initialize();
|
||||
try
|
||||
{
|
||||
GWSocket *socket = createWebSocketFromURL("wss://echo.websocket.org", true);
|
||||
GWSocket *socket = createWebSocketFromURL("wss://echo.websocket.events", true);
|
||||
socket->open();
|
||||
std::thread t1(runIOThread);
|
||||
std::thread t2(sendMessages, socket);
|
||||
|
@ -45,7 +45,7 @@ timer.Simple(10, function()
|
||||
end
|
||||
|
||||
local goodURLs = {
|
||||
"wss://echo.websocket.org"
|
||||
"wss://echo.websocket.events"
|
||||
}
|
||||
local connected = {}
|
||||
for k,v in pairs(goodURLs) do
|
||||
|
Loading…
Reference in New Issue
Block a user