changing pseudo tty echo mode from the master side

前端 未结 3 1080
情书的邮戳
情书的邮戳 2021-01-23 03:28

On linux, I am opening a pseudo tty on the master side. While there is no client on the slave side, the pseudo tty seems to be echoing everything I am writing to him, which is n

3条回答
  •  Happy的楠姐
    2021-01-23 04:29

    None of the older answers provided the correct C code, so here it is:

    struct termios tmios;
    tcgetattr(ptfd, &tmios);
    tmios.c_lflag &= ~(ECHO);
    tcsetattr(ptfd, TCSANOW, &tmios);
    

提交回复
热议问题