blob: a6c68068c6e838c8a49fe24f771912166fabbb7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* ISC license. */
#undef _POSIX_C_SOURCE
#undef _XOPEN_SOURCE
#ifndef _XPG4_2
#define _XPG4_2
#endif
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
int main (void)
{
int s ;
struct ucred dummy ;
socklen_t len = sizeof(struct ucred) ;
return getsockopt(s, SOL_SOCKET, SO_PEERCRED, &dummy, &len) ;
}
|