ef7d24574a
- krb4/5 support for privsep (krb5 diff was already applied) includes fake implementaation of getpeereid() from openssh-portable, which does nothing useful - need improvement.
12 lines
302 B
C
12 lines
302 B
C
/* $NetBSD: getpeereid.h,v 1.1 2002/10/01 14:07:31 itojun Exp $ */
|
|
/* Id: bsd-getpeereid.h,v 1.1 2002/09/12 00:33:02 djm Exp */
|
|
|
|
#ifndef _BSD_GETPEEREID_H
|
|
#define _BSD_GETPEEREID_H
|
|
|
|
#include <sys/types.h> /* For uid_t, gid_t */
|
|
|
|
int getpeereid(int , uid_t *, gid_t *);
|
|
|
|
#endif /* _BSD_GETPEEREID_H */
|