Merge pull request #30 from viral32111/master

Change example servers
This commit is contained in:
FredyH 2022-04-17 17:07:10 +02:00 committed by GitHub
commit c94fe9c74b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -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)

View File

@ -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)

View File

@ -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);

View File

@ -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