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