- 论坛徽章:
- 0
|
static char buf[SES_MAX_NAME_LENGTH_USERPASSWORD + 1]; /* null byte at end */
char * ptr;
sigset_t sig, osig;
struct termios ts, ots;
FILE * fp;
int c;
if ((fp = fopen(ctermid(NULL), "r+")) == NULL){
return(NULL);
}
setbuf(fp, NULL);
sigemptyset(&sig);
sigaddset(&sig, SIGINT); /* block SIGINT */
sigaddset(&sig, SIGTSTP); /* block SIGTSTP */
sigprocmask(SIG_BLOCK, &sig, &osig); /* and save mask */
tcgetattr(fileno(fp), &ts); /* save tty state */
ots = ts; /* structure copy */
ts.c_lflag &= ~(ECHO | ECHOE | ECHOK | ECHONL);
tcsetattr(fileno(fp), TCSAFLUSH, &ts);
fputs(prompt, fp);
ptr = buf;
while ((c = getc(fp)) != EOF && c != '\n'){
if (ptr < &buf[SES_MAX_NAME_LENGTH_USERPASSWORD]){
*ptr++ = c;
}
}
*ptr = 0; /* null terminate */
putc('\n', fp); /* we echo a newline */
tcsetattr(fileno(fp), TCSAFLUSH, &ots); /* restore TTY state */
sigprocmask(SIG_SETMASK, &osig, NULL); /* restore mask */
fclose(fp); /* done with /dev/tty */
return(buf);
这段代码是用来读用户输入密码的.就是实现了"在按键时读取键值码,同时不要显示在终端上面"功能. |
|