X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Flogind-session.h;h=e58ff6fd8f53fa97b78e192f3b897b654bae58f6;hp=76823931daa47402d5c9c013bcfdc91068efa9de;hb=1968a360405e302d4d2c2abc03a3314f81375156;hpb=a185c5aa2d8bef98716f8cf160da263c17e588b2 diff --git a/src/logind-session.h b/src/logind-session.h index 76823931d..e58ff6fd8 100644 --- a/src/logind-session.h +++ b/src/logind-session.h @@ -31,6 +31,7 @@ typedef struct Session Session; #include "logind-user.h" typedef enum SessionType { + SESSION_UNSPECIFIED, SESSION_TTY, SESSION_X11, _SESSION_TYPE_MAX, @@ -56,13 +57,16 @@ struct Session { char *remote_user; char *remote_host; + char *service; + int vtnr; Seat *seat; pid_t leader; uint32_t audit_id; - int pipe_fd; + int fifo_fd; + char *fifo_path; char *cgroup_path; char **controllers, **reset_controllers; @@ -72,6 +76,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); @@ -81,11 +86,14 @@ struct Session { Session *session_new(Manager *m, User *u, const char *id); void session_free(Session *s); -int session_check_gc(Session *s); +int session_check_gc(Session *s, bool drop_not_started); 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_create_fifo(Session *s); +void session_remove_fifo(Session *s); int session_start(Session *s); int session_stop(Session *s); int session_save(Session *s); @@ -95,6 +103,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);