mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
17 lines
291 B
C
17 lines
291 B
C
|
#include "wrap.h"
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/socket.h>
|
||
|
|
||
|
int
|
||
|
m3_getpeername(int s, struct sockaddr *name, int *namelen)
|
||
|
{
|
||
|
int result;
|
||
|
|
||
|
ENTER_CRITICAL;
|
||
|
MAKE_WRITABLE(name);
|
||
|
MAKE_WRITABLE(namelen);
|
||
|
result = getpeername(s, name, namelen);
|
||
|
EXIT_CRITICAL;
|
||
|
return result;
|
||
|
}
|