summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/session.h
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2003-08-22 10:56:08 +0000
committermarkus <markus@openbsd.org>2003-08-22 10:56:08 +0000
commitc9017d5dc673bbc7f0c14b98298f7e4f0568530f (patch)
treea08208b4416208eaa4d2e2b5e821fe68b0a20e68 /usr.bin/ssh/session.h
parentDon't age non-gateway host routes. NetBSD PR bin/22568 from Andrew White (diff)
downloadwireguard-openbsd-c9017d5dc673bbc7f0c14b98298f7e4f0568530f.tar.xz
wireguard-openbsd-c9017d5dc673bbc7f0c14b98298f7e4f0568530f.zip
support GSS API user authentication; patches from Simon Wilkinson,
stripped down and tested by Jakob and myself.
Diffstat (limited to 'usr.bin/ssh/session.h')
-rw-r--r--usr.bin/ssh/session.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/session.h b/usr.bin/ssh/session.h
index d3ddfab75f9..525e47f64ec 100644
--- a/usr.bin/ssh/session.h
+++ b/usr.bin/ssh/session.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: session.h,v 1.19 2002/06/30 21:59:45 deraadt Exp $ */
+/* $OpenBSD: session.h,v 1.20 2003/08/22 10:56:09 markus Exp $ */
/*
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
@@ -68,4 +68,7 @@ Session *session_new(void);
Session *session_by_tty(char *);
void session_close(Session *);
void do_setusercontext(struct passwd *);
+void child_set_env(char ***envp, u_int *envsizep, const char *name,
+ const char *value);
+
#endif