chiark / gitweb /
logind: properly handle if two session with identical loginuids are attempted to...
[elogind.git] / src / logind-session.h
index 76823931daa47402d5c9c013bcfdc91068efa9de..01c9504dd4aca5846024310e36ebf4bcfcdb7b9c 100644 (file)
@@ -33,6 +33,7 @@ typedef struct Session Session;
 typedef enum SessionType {
         SESSION_TTY,
         SESSION_X11,
+        SESSION_OTHER,
         _SESSION_TYPE_MAX,
         _SESSION_TYPE_INVALID = -1
 } SessionType;
@@ -56,6 +57,8 @@ struct Session {
         char *remote_user;
         char *remote_host;
 
+        char *service;
+
         int vtnr;
         Seat *seat;
 
@@ -72,6 +75,7 @@ struct Session {
 
         bool kill_processes;
         bool in_gc_queue:1;
+        bool started:1;
 
         LIST_FIELDS(Session, sessions_by_user);
         LIST_FIELDS(Session, sessions_by_seat);
@@ -86,6 +90,7 @@ void session_add_to_gc_queue(Session *s);
 int session_activate(Session *s);
 bool session_is_active(Session *s);
 int session_get_idle_hint(Session *s, dual_timestamp *t);
+void session_set_idle_hint(Session *s, bool b);
 int session_start(Session *s);
 int session_stop(Session *s);
 int session_save(Session *s);
@@ -95,6 +100,9 @@ char *session_bus_path(Session *s);
 
 extern const DBusObjectPathVTable bus_session_vtable;
 
+int session_send_signal(Session *s, bool new_session);
+int session_send_changed(Session *s, const char *properties);
+
 const char* session_type_to_string(SessionType t);
 SessionType session_type_from_string(const char *s);