blob: a56f7c6817339bf48da8899eae541628af69b4a4 (
plain)
1
2
3
4
5
6
7
8
|
/* ISC license. */
#include <skalibs/socket.h>
ssize_t socket_ioloop_send6 (int fd, char *s, size_t len, char *ip, uint16_t *port)
{
return socket_send6(fd, s, len, ip, *port) ;
}
|