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