📄 do_notsup.c
字号:
/* do_notsup.c - do_notsup */#include <sys/types.h>#include <stdio.h>#include "telnet.h"extern u_char option_cmd;/*------------------------------------------------------------------------ * do_notsup - handle an unsupported telnet "will/won't" option *------------------------------------------------------------------------ */intdo_notsup(FILE *sfp, FILE *tfp, int c){ (void) putc(TCIAC, sfp); (void) putc(TCDONT, sfp); (void) putc((char)c, sfp); return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -