summaryrefslogtreecommitdiff
path: root/servconf.h
diff options
context:
space:
mode:
authormouring <mouring>2002-03-22 02:30:41 +0000
committermouring <mouring>2002-03-22 02:30:41 +0000
commit6d64854999444aada91be4d47be88699ad1f4e6f (patch)
treeee1cddd388d36964cc391ffde6e075f69f4d44d3 /servconf.h
parent9685f8ab6d677af52640e2ad6fe93f8d7c700d63 (diff)
downloadopenssh-6d64854999444aada91be4d47be88699ad1f4e6f.tar.gz
- provos@cvs.openbsd.org 2002/03/18 17:50:31
[auth-bsdauth.c auth-options.c auth-rh-rsa.c auth-rsa.c auth-skey.c auth.h auth1.c auth2-chall.c auth2.c kex.c kex.h kexdh.c kexgex.c servconf.c session.h servconf.h serverloop.c session.c sshd.c] integrate privilege separated openssh; its turned off by default for now. work done by me and markus@ applied, but outside of ensure that smaller code bits migrated with their owners.. no work was tried to 'fix' it to work. =) Later project!
Diffstat (limited to 'servconf.h')
-rw-r--r--servconf.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/servconf.h b/servconf.h
index 3134b222..b5d110a5 100644
--- a/servconf.h
+++ b/servconf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: servconf.h,v 1.54 2002/03/04 17:27:39 stevesk Exp $ */
+/* $OpenBSD: servconf.h,v 1.55 2002/03/18 17:50:31 provos Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -131,6 +131,9 @@ typedef struct {
char *authorized_keys_file2;
int pam_authentication_via_kbd_int;
+ int unprivileged_user; /* User unprivileged child uses */
+ int unprivileged_group; /* Group unprivileged child uses */
+ char *unprivileged_dir; /* Chroot dir for unprivileged user */
} ServerOptions;
void initialize_server_options(ServerOptions *);