1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/lang/modula-3-socks/files/sendto.c
John Polstra 61ce7c4a22 This package implements SOCKS support for Modula-3 applications. It
will be used to support SOCKS operation in the soon-to-be-released next
version of CVSup.

A tip of the hat to:  Darryl Okahata, who developed the patches
necessary to make the SOCKS library work with Modula-3's multithreaded
I/O system.
1996-11-01 02:37:35 +00:00

18 lines
335 B
C

#include "wrap.h"
#include <sys/types.h>
#include <sys/socket.h>
ssize_t
m3_sendto(int s, const void *msg, size_t len, int flags,
const struct sockaddr *to, int tolen)
{
int result;
ENTER_CRITICAL;
MAKE_READABLE(msg);
MAKE_READABLE(to);
result = sendto(s, msg, len, flags, to, tolen);
EXIT_CRITICAL;
return result;
}