Merge pull request #120 from stv0g/add-missing-bsd-hal

Add stubs for missing functions in BSD HAL
pull/179/head
Michael Zillgith 7 years ago committed by GitHub
commit e51b676414
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -285,6 +285,20 @@ Socket_setConnectTimeout(Socket self, uint32_t 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
Socket_connect(Socket self, const char* address, int port)

Loading…
Cancel
Save