⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 will_termtype.c

📁 &#61599 Douglas Comer
💻 C
字号:
/* will_termtype.c - will_termtype */#include <sys/types.h>#include <stdlib.h>#include <stdio.h>#include "telnet.h"char		termtype;	/* non-zero if received "DO TERMTYPE"	*/char		*term;		/* terminal name			*/extern u_char	option_cmd;int	do_txbinary(FILE *,FILE *,int), will_txbinary(FILE *,FILE *,int);/*------------------------------------------------------------------------ * will_termtype - handle telnet "do/don't" TERMINAL-TYPE option *------------------------------------------------------------------------ */intwill_termtype(FILE *sfp, FILE *tfp, int c){	if (termtype) {		if (option_cmd == TCDO)			return 0;	} else if (option_cmd == TCDONT)		return 0;	termtype = !termtype;	if (termtype)		if (!term && !(term = getenv("TERM")))			termtype = !termtype;	/* can't do it... */	(void) putc(TCIAC, sfp);	if (termtype)		(void) putc(TCWILL, sfp);	else		(void) putc(TCWONT, sfp);	(void) putc((char)c, sfp);	if (termtype) {	/* set up binary data path; send WILL, DO */		option_cmd = TCWILL;		(void) do_txbinary(sfp, tfp, TOTXBINARY);		option_cmd = TCDO;		(void) will_txbinary(sfp, tfp, TOTXBINARY);	}	return 0;}

⌨️ 快捷键说明

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