/* * This file is part of Cockpit. * * Copyright (C) 2015 Red Hat, Inc. * * Cockpit is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * Cockpit is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Cockpit; If not, see . */ #ifndef PAM_SSH_ADD_H__ #define PAM_SSH_ADD_H__ #include "pwd.h" #define N_ELEMENTS(x) (sizeof(x) / sizeof (x)[0]) extern const char *pam_ssh_agent_program; extern const char *pam_ssh_agent_arg; extern const char *pam_ssh_add_program; extern const char *pam_ssh_add_arg; extern int pam_ssh_add_verbose_mode; typedef void (*pam_ssh_add_logger) (int level, const char *data); extern pam_ssh_add_logger pam_ssh_add_log_handler; int pam_ssh_add_start_agent (struct passwd *pwd, const char *xdg_runtime_overide, char **out_auth_sock_var, char **out_agent_pid_var); int pam_ssh_add_load (struct passwd *pwd, const char *agent_socket, const char *password); #endif /* PAM_SSH_ADD_H__ */