diff options
Diffstat (limited to 'otherlibs/unix/connect.c')
-rw-r--r-- | otherlibs/unix/connect.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/otherlibs/unix/connect.c b/otherlibs/unix/connect.c new file mode 100644 index 000000000..51eee4305 --- /dev/null +++ b/otherlibs/unix/connect.c @@ -0,0 +1,21 @@ +#include <mlvalues.h> +#include "unix.h" + +#ifdef HAS_SOCKETS + +#include "socketaddr.h" + +value unix_connect(socket, address) /* ML */ + value socket, address; +{ + get_sockaddr(address); + if (connect(Int_val(socket), &sock_addr.s_gen, sock_addr_len) == -1) + uerror("connect", Nothing); + return Val_unit; +} + +#else + +value unix_connect() { invalid_argument("connect not implemented"); } + +#endif |