1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "util/util.h"
#include "responder/pam/pamsrv.h"
void pam_print_data(int l, struct pam_data *pd) {
DEBUG(l, ("command: %d\n", pd->cmd));
DEBUG(l, ("domain: %s\n", pd->domain));
DEBUG(l, ("user: %s\n", pd->user));
DEBUG(l, ("service: %s\n", pd->service));
DEBUG(l, ("tty: %s\n", pd->tty));
DEBUG(l, ("ruser: %s\n", pd->ruser));
DEBUG(l, ("rhost: %s\n", pd->rhost));
DEBUG(l, ("authtok type: %d\n", pd->authtok_type));
DEBUG(l, ("authtok size: %d\n", pd->authtok_size));
DEBUG(l, ("newauthtok type: %d\n", pd->newauthtok_type));
DEBUG(l, ("newauthtok size: %d\n", pd->newauthtok_size));
}
|