summaryrefslogtreecommitdiff
path: root/src/libstddjb/socket_ioloop_send4.c
blob: 94eb3113e115d2f1b53e8bfc6cfc029343f8fa40 (plain)
1
2
3
4
5
6
7
8
9
10
/* ISC license. */

#include <sys/types.h>
#include <stdint.h>
#include <skalibs/socket.h>

ssize_t socket_ioloop_send4 (int fd, char *s, size_t len, char *ip, uint16_t *port)
{
  return socket_send4(fd, s, len, ip, *port) ;
}