Home | History | Annotate | Download | only in pppd

Lines Matching refs:user

41 #define SESS_AUTH  1	/* Check User Authentication */
57 * const char* user :
61 * The password to validate the user with. May safely be null.
64 * The TTY the user is connected on. May safely be null.
74 session_start(const int flags, const char* user, const char* passwd, const char* tty, char** msg);
77 #define session_auth(user, pass, tty, msg) \
78 session_start(SESS_AUTH, user, pass, tty, msg)
80 #define session_check(user, pass, tty, msg) \
81 session_start(SESS_ACCT, user, pass, tty, msg)
83 #define session_full(user, pass, tty, msg) \
84 session_start(SESS_ALL, user, pass, tty, msg)
93 * The TTY the user is connected on. May safely be null.