mirror of
https://github.com/defold/extension-websocket.git
synced 2025-09-30 09:12:18 +02:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
02198c9401 | ||
|
4c5d1ecd61 | ||
|
3331ec1a8d | ||
|
c4d744ec49 | ||
|
de6d493a1c |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -13,3 +13,4 @@ lws_source
|
|||||||
lws_build
|
lws_build
|
||||||
*.profraw
|
*.profraw
|
||||||
*.der
|
*.der
|
||||||
|
/.editor_settings
|
@@ -11,7 +11,9 @@ We recommend using a link to a zip file of a [specific release](https://github.c
|
|||||||
|
|
||||||
## API reference
|
## API reference
|
||||||
|
|
||||||
https://defold.com/extension-websocket/api/
|
https://defold.com/extension-websocket/
|
||||||
|
|
||||||
|
https://defold.com/extension-websocket/websocket_api/
|
||||||
|
|
||||||
## Debugging
|
## Debugging
|
||||||
|
|
||||||
|
@@ -72,7 +72,3 @@ socket_timeout = 10000000
|
|||||||
## Source code
|
## Source code
|
||||||
|
|
||||||
The source code is available on [GitHub](https://github.com/defold/extension-websocket)
|
The source code is available on [GitHub](https://github.com/defold/extension-websocket)
|
||||||
|
|
||||||
## API reference
|
|
||||||
|
|
||||||
https://defold.com/extension-websocket/api/
|
|
||||||
|
@@ -7,9 +7,6 @@ platforms:
|
|||||||
includes: ["upload/websocket/include/wslay"]
|
includes: ["upload/websocket/include/wslay"]
|
||||||
defines: ["HAVE_CONFIG_H"]
|
defines: ["HAVE_CONFIG_H"]
|
||||||
|
|
||||||
wasm-web:
|
web:
|
||||||
context:
|
|
||||||
linkFlags: ["-lwebsocket.js"]
|
|
||||||
js-web:
|
|
||||||
context:
|
context:
|
||||||
linkFlags: ["-lwebsocket.js"]
|
linkFlags: ["-lwebsocket.js"]
|
@@ -123,7 +123,7 @@ Result ReceiveHeaders(WebsocketConnection* conn)
|
|||||||
dmSocket::Result sr = WaitForSocket(conn, dmSocket::SELECTOR_KIND_READ, SOCKET_WAIT_TIMEOUT);
|
dmSocket::Result sr = WaitForSocket(conn, dmSocket::SELECTOR_KIND_READ, SOCKET_WAIT_TIMEOUT);
|
||||||
if (dmSocket::RESULT_OK != sr)
|
if (dmSocket::RESULT_OK != sr)
|
||||||
{
|
{
|
||||||
if (dmSocket::RESULT_WOULDBLOCK)
|
if (dmSocket::RESULT_WOULDBLOCK == sr)
|
||||||
{
|
{
|
||||||
DebugLog(2, "Waiting for socket to be available for reading");
|
DebugLog(2, "Waiting for socket to be available for reading");
|
||||||
return RESULT_WOULDBLOCK;
|
return RESULT_WOULDBLOCK;
|
||||||
|
Reference in New Issue
Block a user