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