You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
515 B
19 lines
515 B
#ifndef _X11VNC_UNIXPW_H
|
|
#define _X11VNC_UNIXPW_H
|
|
|
|
/* -- unixpw.h -- */
|
|
|
|
extern void unixpw_screen(int init);
|
|
extern void unixpw_keystroke(rfbBool down, rfbKeySym keysym, int init);
|
|
extern void unixpw_accept(char *user);
|
|
extern void unixpw_deny(void);
|
|
extern int su_verify(char *user, char *pass);
|
|
extern int crypt_verify(char *user, char *pass);
|
|
|
|
extern int unixpw_in_progress;
|
|
extern int unixpw_login_viewonly;
|
|
extern time_t unixpw_last_try_time;
|
|
extern rfbClientPtr unixpw_client;
|
|
|
|
#endif /* _X11VNC_UNIXPW_H */
|