summaryrefslogtreecommitdiff
path: root/daemon/gdm-session-record.h
diff options
context:
space:
mode:
authorWilliam Jon McCann <mccannwj@acsnb1>2007-10-18 23:05:33 +0000
committerWilliam Jon McCann <mccann@src.gnome.org>2007-10-18 23:05:33 +0000
commit3451d349a6c8b787423a00b112a8e76cfeb309a8 (patch)
tree21a5a8683615d93ea3a88934d0df4e9cca3e4a24 /daemon/gdm-session-record.h
parente0309b7b88414286c1a746368170ab4769787b05 (diff)
downloadgdm-3451d349a6c8b787423a00b112a8e76cfeb309a8.tar.gz
Separate session recording writing stuff.
2007-10-18 William Jon McCann <mccannwj@acsnb1> * daemon/Makefile.am: * daemon/gdm-session-record.c: (gdm_session_write_record): * daemon/gdm-session-record.h: * daemon/gdm-session.c: (gdm_session_user_verification_error_handler), (gdm_session_started_handler), (gdm_session_startup_error_handler), (gdm_session_exited_handler), (gdm_session_close): Separate session recording writing stuff. svn path=/trunk/; revision=5380
Diffstat (limited to 'daemon/gdm-session-record.h')
-rw-r--r--daemon/gdm-session-record.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/daemon/gdm-session-record.h b/daemon/gdm-session-record.h
new file mode 100644
index 00000000..5514968b
--- /dev/null
+++ b/daemon/gdm-session-record.h
@@ -0,0 +1,45 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
+ *
+ * Copyright (C) 2006 Ray Strode <rstrode@redhat.com>
+ *
+ * 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, 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_SESSION_RECORD_H
+#define __GDM_SESSION_RECORD_H
+
+#include <glib.h>
+
+G_BEGIN_DECLS
+
+typedef enum {
+ GDM_SESSION_RECORD_TYPE_LOGIN,
+ GDM_SESSION_RECORD_TYPE_FAILED_ATTEMPT,
+ GDM_SESSION_RECORD_TYPE_LOGOUT,
+} GdmSessionRecordType;
+
+void
+gdm_session_record_write (GdmSessionRecordType record_type,
+ GPid session_pid,
+ const char *user_name,
+ const char *host_name,
+ const char *x11_display_name,
+ const char *display_device);
+
+
+G_END_DECLS
+
+#endif /* GDM_SESSION_RECORD_H */