]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - src/xdmcp-session-private.h
Replace unnecessary dispose method with finalize
[sojka/lightdm.git] / src / xdmcp-session-private.h
1 /*
2  * Copyright (C) 2010-2011 Robert Ancell.
3  * Author: Robert Ancell <robert.ancell@canonical.com>
4  *
5  * This program is free software: you can redistribute it and/or modify it under
6  * the terms of the GNU General Public License as published by the Free Software
7  * Foundation, either version 3 of the License, or (at your option) any later
8  * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
9  * license.
10  */
11
12 #ifndef XDMCP_SESSION_PRIVATE_H_
13 #define XDMCP_SESSION_PRIVATE_H_
14
15 #include "xdmcp-server.h"
16 #include "x-authority.h"
17
18 struct XDMCPSessionPrivate
19 {
20     XDMCPServer *server;
21
22     guint16 id;
23
24     gchar *manufacturer_display_id;
25
26     GInetAddress *address;
27
28     guint inactive_timeout;
29
30     XAuthority *authority;
31
32     gboolean started;
33
34     guint16 display_number;
35
36     gchar *display_class;
37 };
38
39 #endif /* XDMCP_SESSION_PRIVATE_H_ */