summaryrefslogtreecommitdiff
path: root/sys/kern/syscalls.master
diff options
context:
space:
mode:
authorDug Song <dugsong@cvs.openbsd.org>2001-06-26 19:56:53 +0000
committerDug Song <dugsong@cvs.openbsd.org>2001-06-26 19:56:53 +0000
commitf9a6c0ac3d4f139e51e54e808391cb56d776e7fb (patch)
treea048983afd7a1bc2677a45462f62160abb2c4a47 /sys/kern/syscalls.master
parent365a4d00173693652d309133c96a976401713859 (diff)
implement djb's getpeereid(2), to allow local-domain servers to determine client credentials. mostly from superscript.com. deraadt@ ok
Diffstat (limited to 'sys/kern/syscalls.master')
-rw-r--r--sys/kern/syscalls.master3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index 2bc8c9691d8..1a6ead6a9ec 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -1,4 +1,4 @@
-; $OpenBSD: syscalls.master,v 1.46 2001/06/16 22:16:23 deraadt Exp $
+; $OpenBSD: syscalls.master,v 1.47 2001/06/26 19:56:52 dugsong Exp $
; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $
; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@@ -533,4 +533,5 @@
const struct timespec *timeout); }
271 STD { int sys_mlockall(int flags); }
272 STD { int sys_munlockall(void); }
+273 STD { int sys_getpeereid(int fdes, uid_t *euid, gid_t *egid); }