summaryrefslogtreecommitdiff
path: root/lang/modula-3-socks/files/sendto.c
blob: 30edf8aed4ed74de66464f335c6ea6eaa53c27b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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;
}