diff options
author | Michael I. Bushnell <mib@gnu.org> | 1991-07-11 19:23:58 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1991-07-11 19:23:58 +0000 |
commit | fda7bfca21d377b6e8fff1646b8e4a784fa89698 (patch) | |
tree | 80af0b3dc7bb6d242e2a2e4f44441b5dc4258756 /hurd | |
parent | 2cfe2ba12c53cc30f5054ed00494b78345aa705d (diff) |
Initial revision
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/auth_reply.defs | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/hurd/auth_reply.defs b/hurd/auth_reply.defs new file mode 100644 index 00000000..501151fd --- /dev/null +++ b/hurd/auth_reply.defs @@ -0,0 +1,36 @@ +/* Reply-only side of auth interface + Copyright (C) 1991 Free Software Foundation + +This file is part of the GNU Hurd. + +The GNU Hurd is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 1, or (at your option) +any later version. + +The GNU Hurd is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with the GNU Hurd; see the file COPYING. If not, write to +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ + +/* Written by Michael I. Bushnell. */ + +subsystem auth_reply 25100; /* must mach auth.defs + 100 */ + +skip; /* auth_getids */ +skip; /* auth_makeauth */ + +simpleroutine auth_user_authenticate_reply ( + reply_port: reply_port_t; + in return_code: kern_return_t; + in newhandle: mach_port_make_send_t); + +simpleroutine auth_server_authenticate_reply ( + reply_port: reply_port_t; + in return_code: kern_return_t; + in idblock: idblock_t); + |