summaryrefslogtreecommitdiff
path: root/daemon/auth.h
diff options
context:
space:
mode:
author9 <mkp@mkp.net>1999-12-29 21:06:27 +0000
committerMartin Peterson <mkp@src.gnome.org>1999-12-29 21:06:27 +0000
commitdd1777839a7c07d2f168b1a3163dae2f6c898d42 (patch)
treec47e9f1500822f34947510bbb302510f7d229e90 /daemon/auth.h
parentb9dcc8c3c357b613fde6c9ad5983d136c5380976 (diff)
downloadgdm-dd1777839a7c07d2f168b1a3163dae2f6c898d42.tar.gz
Checkin of my devel tree. Some of the new stuff is in. Mostly
1999-12-29 <mkp@mkp.net> * Checkin of my devel tree. Some of the new stuff is in. Mostly infrastructure changes, though. Oh, and it doesn't actually work yet. But it will eventually. Promise! 1999-12-26 <mkp@mkp.net> * daemon/verify-*.c: Move each authentication scheme to a separate file (Sucks to be a translator :). 1999-12-21 <mkp@mkp.net> * daemon/verify.c (gdm_verify_user): Added fix for expired passwords when using PAM (Philip Spencer <pspencer@fields.utoronto.ca>). 1999-11-11 <mkp@mkp.net> * daemon/misc.c (gdm_setenv): New function to work around POSIX brain damage. 1999-11-01 <mkp@mkp.net> * daemon/verify.c (gdm_verify_user): Error in error message. * daemon/slave.c (gdm_slave_greeter_ctl): Nuke random junk that might have accumulated in the ipc pipe. * gui/gdmlogin.c (gdm_login_ctrl_handler): Same as above. * configure.in: Fixed -lnsl (again) 1999-10-03 <mkp@mkp.net> * daemon/slave.c: Misc. hacks to solve #2487. PAM messes with pwent. * daemon/gdm.c (gdm_config_parse): Check that gdmlogin and gdmchooser can be executed by gdm before starting up. 1999-10-02 <mkp@mkp.net> * daemon/slave.c (gdm_slave_greeter_ctl): Fix NULL string passing bug.
Diffstat (limited to 'daemon/auth.h')
-rw-r--r--daemon/auth.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/daemon/auth.h b/daemon/auth.h
new file mode 100644
index 00000000..0affb746
--- /dev/null
+++ b/daemon/auth.h
@@ -0,0 +1,30 @@
+/* GDM - The Gnome Display Manager
+ * Copyright (C) 1998, 1999, 2000 Martin K. Petersen <mkp@mkp.net>
+ *
+ * This program 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 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#ifndef GDM_AUTH_H
+#define GDM_AUTH_H
+
+#include "gdm.h"
+
+gboolean gdm_auth_secure_display (GdmDisplay *d);
+gboolean gdm_auth_user_add (GdmDisplay *d, uid_t user, gchar *homedir);
+void gdm_auth_user_remove (GdmDisplay *d, uid_t user);
+
+#endif /* GDM_AUTH_H */
+
+/* EOF */