hal: add stubs for missing functions in BSD (closes #113)

pull/119/head
Steffen Vogel 7 years ago
parent 9309cb78de
commit 88b74cfab8

@ -285,6 +285,20 @@ Socket_setConnectTimeout(Socket self, uint32_t timeoutInMs)
self->connectTimeout = timeoutInMs; self->connectTimeout = timeoutInMs;
} }
// TODO: implement
bool
Socket_connectAsync(Socket self, const char* address, int port)
{
return false;
}
// TODO: implement
SocketState
Socket_checkAsyncConnectState(Socket self)
{
return SOCKET_STATE_FAILED;
}
bool bool
Socket_connect(Socket self, const char* address, int port) Socket_connect(Socket self, const char* address, int port)

Loading…
Cancel
Save