summaryrefslogtreecommitdiff
path: root/src/libstddjb/socket_remote4.c
blob: 767a6944143557e9b524251ac5b67e6e65683d7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ISC license. */

#include <skalibs/nonposix.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <skalibs/uint16.h>
#include <skalibs/bytestr.h>
#include <skalibs/socket.h>

int socket_remote4 (int s, char *ip, uint16 *port)
{
  struct sockaddr_in sa ;
  socklen_t dummy = sizeof sa ;

  if (getpeername(s, (struct sockaddr *)&sa, &dummy) == -1)
    return -1 ;
  byte_copy(ip, 4, (char *)&sa.sin_addr.s_addr) ;
  uint16_unpack_big((char *)&sa.sin_port, port) ;
  return 0 ;
}