skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

socket_ioloop_send6.c (184B)


      1 /* ISC license. */
      2 
      3 #include <skalibs/socket.h>
      4 
      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 }