subtermtype.c

来自「comer s TCPIP-vol3源代码...当然是经典咯」· C语言 代码 · 共 29 行

C
29
字号
/* subtermtype.c - subtermtype */#include <sys/types.h>#include <stdio.h>#include "telnet.h"extern char	*term;		/* terminal name, from initialization	*//*------------------------------------------------------------------------ * subtermtype - do terminal type option subnegotation *------------------------------------------------------------------------ */intsubtermtype(FILE *sfp, FILE *tfp, int c){	/* have received IAC.SB.TERMTYPE.SEND */	(void) putc(TCIAC, sfp);	(void) putc(TCSB, sfp);	(void) putc(TOTERMTYPE, sfp);	(void) putc(TT_IS, sfp);	fputs(term, sfp);	(void) putc(TCIAC, sfp);	(void) putc(TCSE, sfp);	return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?