mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
14 lines
295 B
C
14 lines
295 B
C
#include "syshdrs.h"
|
|
|
|
int
|
|
SConnectByName(int sfd, const char * const addrStr, const int tlen)
|
|
{
|
|
int result;
|
|
struct sockaddr_in remoteAddr;
|
|
|
|
if ((result = AddrStrToAddr(addrStr, &remoteAddr, -1)) == 0) {
|
|
result = SConnect(sfd, &remoteAddr, tlen);
|
|
}
|
|
return (result);
|
|
} /* SConnectByName */
|