pam_message.h revision bf6c3f07d653d474da9e43b2b7cced57fc4ea069
/*
Authors:
Sumit Bose <sbose@redhat.com>
Copyright (C) 2015 Red Hat
PAM client - create message blob
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _PAM_MESSAGE_H_
#define _PAM_MESSAGE_H_
#include <unistd.h>
#include <stdint.h>
struct pam_items {
const char *pam_service;
const char *pam_user;
const char *pam_tty;
const char *pam_ruser;
const char *pam_rhost;
char *pam_authtok;
char *pam_newauthtok;
const char *pamstack_authtok;
const char *pamstack_oldauthtok;
int pam_authtok_type;
int pam_newauthtok_type;
const char *login_name;
char *domain_name;
const char *requested_domains;
char *otp_vendor;
char *otp_token_id;
char *otp_challenge;
char *first_factor;
};
#endif /* _PAM_MESSAGE_H_ */