From 3451d349a6c8b787423a00b112a8e76cfeb309a8 Mon Sep 17 00:00:00 2001 From: William Jon McCann Date: Thu, 18 Oct 2007 23:05:33 +0000 Subject: Separate session recording writing stuff. 2007-10-18 William Jon McCann * 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 --- daemon/gdm-session-record.h | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 daemon/gdm-session-record.h (limited to 'daemon/gdm-session-record.h') 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 + * + * 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 + +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 */ -- cgit v1.2.1