summaryrefslogtreecommitdiff
path: root/session.h
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2012-10-31 10:35:38 +0000
committerColin Watson <cjwatson@debian.org>2012-10-31 10:35:38 +0000
commit301aad188299b268452af6b67261336c88f44ab1 (patch)
tree5ec34d429196f17ea6eb2205ca8f96da32b09dd1 /session.h
parent5cb249b209c170d817471b575b6d105094f137bc (diff)
* Merge from Ubuntu:
- Add support for registering ConsoleKit sessions on login. (This is currently enabled only when building for Ubuntu.)
Diffstat (limited to 'session.h')
-rw-r--r--session.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/session.h b/session.h
index cb4f19600..7e51b6ae1 100644
--- a/session.h
+++ b/session.h
@@ -26,6 +26,8 @@
26#ifndef SESSION_H 26#ifndef SESSION_H
27#define SESSION_H 27#define SESSION_H
28 28
29struct _CkConnector;
30
29#define TTYSZ 64 31#define TTYSZ 64
30typedef struct Session Session; 32typedef struct Session Session;
31struct Session { 33struct Session {
@@ -60,6 +62,10 @@ struct Session {
60 char *name; 62 char *name;
61 char *val; 63 char *val;
62 } *env; 64 } *env;
65
66#ifdef USE_CONSOLEKIT
67 struct _CkConnector *ckc;
68#endif /* USE_CONSOLEKIT */
63}; 69};
64 70
65void do_authenticated(Authctxt *); 71void do_authenticated(Authctxt *);