Home | History | Annotate | Download | only in pppd

Lines Matching refs:tty

56  *	const char* tty :
57 * The TTY the user is connected on. May safely be null.
67 session_start(const int flags, const char* user, const char* passwd, const char* tty, char** msg);
70 #define session_auth(user, pass, tty, msg) \
71 session_start(SESS_AUTH, user, pass, tty, msg)
73 #define session_check(user, pass, tty, msg) \
74 session_start(SESS_ACCT, user, pass, tty, msg)
76 #define session_full(user, pass, tty, msg) \
77 session_start(SESS_ALL, user, pass, tty, msg)
85 * const char* tty :
86 * The TTY the user is connected on. May safely be null.
89 session_end(const char* tty);