The branch, build-main has been updated via 724c72a5b24d115d5298186c05f3a2b91f64e185 (commit) from 498cd53c527299ce7e50f64712bcd60433fa586b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- ----------------------------------------------------------------------- Summary of changes: src/pam-freerdp.c | 7 +++++++ 1 file changed, 7 insertions(+) The diff of changes is: diff --git a/src/pam-freerdp.c b/src/pam-freerdp.c index 6466a06..539cd0d 100644 --- a/src/pam-freerdp.c +++ b/src/pam-freerdp.c @@ -1,18 +1,25 @@ #include <security/pam_modules.h> #include <security/pam_modutil.h> +/* Authenticate. We need to make sure we have a user account, that + there are remote accounts and then verify them with FreeRDP */ PAM_EXTERN int pam_sm_authenticate (pam_handle_t *pamh, int flags, int argc, const char **argv) { return PAM_IGNORE; } +/* Open Session. Here we need to fork a little process so that we can + give the credentials to the session itself so that it can startup the + xfreerdp viewer for the login */ PAM_EXTERN int pam_sm_open_session (pam_handle_t *pamh, int flags, int argc, const char **argv) { return PAM_IGNORE; } +/* Close Session. Make sure our little guy has died so he doesn't become + a zombie and eat things. */ PAM_EXTERN int pam_sm_close_session (pam_handle_t *pamh, int flags, int argc, const char **argv) { hooks/post-receive -- libpam-x2go.git (Remote login session via X2Go (PAM module)) This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "libpam-x2go.git" (Remote login session via X2Go (PAM module)).