blob: 1817ec3e4141f66cecba6e06615dae7ebecbec2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* ISC license. */
#include <stdint.h>
#include <skalibs/uint32.h>
#include <skalibs/socket.h>
int socket_accept4_internal_u32 (int s, uint32_t *ip, uint16_t *port, unsigned int options)
{
char pack[4] ;
int fd = socket_accept4_internal(s, pack, port, options) ;
if (fd >= 0) uint32_unpack_big(pack, ip) ;
return fd ;
}
|