X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Flogind-session.h;h=72f85caaaf3ca1f6d456f65c88b15c6167b0e6de;hb=88bb8d215aa0f5576eb3f9c77c30cdc4b17783fe;hp=9f58165da9fbb284f01a3372701fc31f45e5352e;hpb=bef422ae1e7cbe77ad72dcbfe44798b0fe5e2931;p=elogind.git diff --git a/src/logind-session.h b/src/logind-session.h index 9f58165da..72f85caaa 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,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); @@ -87,6 +91,8 @@ 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_set_pipe_fd(Session *s, int fd); +void session_unset_pipe_fd(Session *s); int session_start(Session *s); int session_stop(Session *s); int session_save(Session *s); @@ -96,6 +102,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);