blob: 10298ef9d39afa856c9f359ee3987f470e50b8b7 (
plain)
1
2
3
4
5
6
7
8
|
/* ISC license. */
#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) ;
}
|