mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
61ce7c4a22
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.
16 lines
259 B
C
16 lines
259 B
C
#include "wrap.h"
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
|
|
ssize_t
|
|
m3_send(int s, const void *msg, size_t len, int flags)
|
|
{
|
|
int result;
|
|
|
|
ENTER_CRITICAL;
|
|
MAKE_READABLE(msg);
|
|
result = send(s, msg, len, flags);
|
|
EXIT_CRITICAL;
|
|
return result;
|
|
}
|