Searched defs:cred (Results 1 - 7 of 7) sorted by relevance
/dovecot/src/imap-urlauth/ |
H A D | imap-urlauth-login.c | 47 struct net_unix_cred cred; local 87 if (net_getunixcred(client->fd, &cred) == 0 && 88 cred.pid != (pid_t)-1 && pid != cred.pid) { 91 (long)pid, (long)cred.pid, (long)cred.uid);
|
H A D | imap-urlauth.c | 137 struct net_unix_cred cred; local 145 if (reply.uid != (uid_t)-1 && net_getunixcred(client->fd, &cred) == 0 && 146 reply.uid != cred.uid) { 149 (long)cred.uid, (long)reply.uid);
|
/dovecot/src/lib-ldap/ |
H A D | ldap-private.h | 62 BerValue cred; /* needed for SASL */ member in struct:ldap_connection
|
/dovecot/src/auth/ |
H A D | auth-master-connection.c | 707 struct net_unix_cred cred; local 720 if (net_getunixcred(conn->fd, &cred) < 0) { 725 if (cred.uid == st->st_uid || cred.gid == st->st_gid) { 731 conn->userdb_restricted_uid = cred.uid;
|
H A D | auth-request-handler.c | 776 struct net_unix_cred cred; local 804 net_getunixcred(master->fd, &cred) == 0 && 805 cred.pid != (pid_t)-1 && request->session_pid != cred.pid) { 810 (long)cred.pid, (long)cred.uid);
|
/dovecot/src/lib-http/ |
H A D | http-server-connection.c | 1080 struct net_unix_cred cred; local 1082 if (net_getunixcred(fd_in, &cred) < 0) { 1084 } else if (cred.pid == (pid_t)-1) { 1085 name = t_strdup_printf("unix:uid=%ld [%u]", (long)cred.uid, id); 1088 ("unix:pid=%ld,uid=%ld [%u]", (long)cred.pid, (long)cred.uid, id);
|
/dovecot/src/lib-smtp/ |
H A D | smtp-server-connection.c | 850 struct net_unix_cred cred; local 854 if (net_getunixcred(fd_in, &cred) >= 0) { 855 conn->remote_pid = cred.pid; 856 conn->remote_uid = cred.uid;
|
Completed in 18 milliseconds