亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? state.c

?? linux下telnet服務端的源碼實現
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* * Copyright (c) 1989, 1993 *      The Regents of the University of California.  All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 4. Neither the name of the University nor the names of its contributors *    may be used to endorse or promote products derived from this software *    without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */#ifndef lintstatic char sccsid[] = "@(#)state.c	8.5 (Berkeley) 5/30/95";#endif /* not lint */#include "telnetd.h"#include <stdarg.h>/* Format lines for corresponing commands */unsigned char doopt[] = {IAC, DO, '%', 'c', 0};unsigned char dont[] = {IAC, DONT, '%', 'c', 0};unsigned char will[] = {IAC, WILL, '%', 'c', 0};unsigned char wont[] = {IAC, WONT, '%', 'c', 0};int not42 = 1;/* * Buffer for sub-options, and macros * for suboptions buffer manipulations */unsigned char subbuffer[512], *subpointer = subbuffer, *subend = subbuffer;#define	SB_CLEAR()	subpointer = subbuffer#define	SB_TERM()	{ subend = subpointer; SB_CLEAR(); }#define	SB_ACCUM(c)	if (subpointer < (subbuffer+sizeof subbuffer)) { \				*subpointer++ = (c); \			}#define	SB_GET()	((*subpointer++)&0xff)#define	SB_EOF()	(subpointer >= subend)#define	SB_LEN()	(subend - subpointer)#ifdef	ENV_HACKunsigned char *subsave;#define SB_SAVE()	subsave = subpointer;#define	SB_RESTORE()	subpointer = subsave;#endif/* * State for recv fsm */#define	TS_DATA		0	/* base state */#define	TS_IAC		1	/* look for double IAC's */#define	TS_CR		2	/* CR-LF ->'s CR */#define	TS_SB		3	/* throw away begin's... */#define	TS_SE		4	/* ...end's (suboption negotiation) */#define	TS_WILL		5	/* will option negotiation */#define	TS_WONT		6	/* wont " */#define	TS_DO		7	/* do " */#define	TS_DONT		8	/* dont " */static voidsend_eof (){  init_termbuf ();  term_send_eof ();  pty_output_byte (slctab[SLC_EOF].sptr ?		   (unsigned char) *slctab[SLC_EOF].sptr : '\004');}/* * When we get an AYT, if ^T is enabled, use that.  Otherwise, * just send back "[Yes]". */static voidrecv_ayt (){#if	defined(SIGINFO) && defined(TCSIG)  if (slctab[SLC_AYT].sptr && *slctab[SLC_AYT].sptr != _POSIX_VDISABLE)    {      ioctl (pty, TCSIG, (char *) SIGINFO);      return;    }#endif  net_output_data ("\r\n[Yes]\r\n");}static voidsend_susp (){#ifdef	SIGTSTP  ptyflush ();			/* half-hearted */#ifdef	TCSIG  ioctl (pty, TCSIG, (char *) SIGTSTP);#else /* TCSIG */  pty_output_byte (slctab[SLC_SUSP].sptr ?		   (unsigned char) *slctab[SLC_SUSP].sptr : '\032');#endif /* TCSIG */#endif /* SIGTSTP */}/* * Send quit to process on other side of pty. * If it is in raw mode, just write NULL; * otherwise, write quit char. */static voidsend_brk (){  ptyflush ();			/* half-hearted */#ifdef	TCSIG  ioctl (pty, TCSIG, (char *) SIGQUIT);#else /* TCSIG */  init_termbuf ();  pty_output_byte (slctab[SLC_ABORT].sptr ?		   (unsigned char) *slctab[SLC_ABORT].sptr : '\034');#endif /* TCSIG */}/* * Send interrupt to process on other side of pty. * If it is in raw mode, just write NULL; * otherwise, write intr char. */static voidsend_intr (){  ptyflush ();			/* half-hearted */#if defined(HAVE_STREAMSPTY) && defined(TIOCSIGNAL)  /* Streams PTY style ioctl to post a signal */  {    int sig = SIGINT;    ioctl (pty, TIOCSIGNAL, &sig);    ioctl (pty, I_FLUSH, FLUSHR);  }#else#ifdef	TCSIG  ioctl (pty, TCSIG, (char *) SIGINT);#else /* TCSIG */  init_termbuf ();  pty_output_byte (slctab[SLC_IP].sptr ?		   (unsigned char) *slctab[SLC_IP].sptr : '\177');#endif /* TCSIG */#endif}voidtelrcv (){  register int c;  static int state = TS_DATA;  while (net_input_level () > 0 & !pty_buffer_is_full () )    {      c = net_get_char (0);#ifdef	ENCRYPTION      if (decrypt_input)	c = (*decrypt_input) (c);#endif /* ENCRYPTION */      switch (state)	{	case TS_CR:	  state = TS_DATA;	  /* Strip off \n or \0 after a \r */	  if ((c == 0) || (c == '\n'))	    break;	  /* FALL THROUGH */	case TS_DATA:	  if (c == IAC)	    {	      state = TS_IAC;	      break;	    }	  /*	   * We now map \r\n ==> \r for pragmatic reasons.	   * Many client implementations send \r\n when	   * the user hits the CarriageReturn key.	   *	   * We USED to map \r\n ==> \n, since \r\n says	   * that we want to be in column 1 of the next	   * printable line, and \n is the standard	   * unix way of saying that (\r is only good	   * if CRMOD is set, which it normally is).	   */	  if ((c == '\r') && his_state_is_wont (TELOPT_BINARY))	    {	      int nc = net_get_char (1);#ifdef	ENCRYPTION	      if (decrypt_input)		nc = (*decrypt_input) (nc & 0xff);#endif /* ENCRYPTION */	      /*	       * If we are operating in linemode,	       * convert to local end-of-line.	       */	      if (linemode		  && net_input_level () > 0		  && (('\n' == nc) || (!nc && tty_iscrnl ())))		{		  net_get_char (0); /* Remove from the buffer */		  c = '\n';		}	      else		{#ifdef	ENCRYPTION		  if (decrypt_input)		    (*decrypt_input) (-1);#endif /* ENCRYPTION */		  state = TS_CR;		}	    }	  pty_output_byte (c);	  break;	case TS_IAC:	gotiac:	  switch (c)	    {	      /*	       * Send the process on the pty side an	       * interrupt.  Do this with a NULL or	       * interrupt char; depending on the tty mode.	       */	    case IP:	      DEBUG (debug_options, 1,		    printoption ("td: recv IAC", c));	      send_intr ();	      break;	    case BREAK:	      DEBUG (debug_options, 1,		    printoption ("td: recv IAC", c));	      send_brk ();	      break;	      /*	       * Are You There?	       */	    case AYT:	      DEBUG (debug_options, 1,                     printoption ("td: recv IAC", c));	      recv_ayt ();	      break;	      /*	       * Abort Output	       */	    case AO:	      {                DEBUG (debug_options, 1,		      printoption ("td: recv IAC", c));		ptyflush ();	/* half-hearted */		init_termbuf ();		if (slctab[SLC_AO].sptr		    && *slctab[SLC_AO].sptr != (cc_t) (_POSIX_VDISABLE))		  pty_output_byte (*slctab[SLC_AO].sptr);		netclear ();	/* clear buffer back */		net_output_data ("%c%c", IAC, DM);		set_neturg ();		DEBUG(debug_options, 1,		      printoption ("td: send IAC", DM));		break;	      }	      /*	       * Erase Character and	       * Erase Line	       */	    case EC:	    case EL:	      {		cc_t ch;                DEBUG(debug_options, 1,            		      printoption ("td: recv IAC", c));		ptyflush ();	/* half-hearted */		init_termbuf ();		if (c == EC)		  ch = *slctab[SLC_EC].sptr;		else		  ch = *slctab[SLC_EL].sptr;		if (ch != (cc_t) (_POSIX_VDISABLE))		  pty_output_byte ((unsigned char)ch);		break;	      }	      /*	       * Check for urgent data...	       */	    case DM:	      DEBUG(debug_options, 1,		    printoption ("td: recv IAC", c));	      SYNCHing = stilloob (net);	      settimer (gotDM);	      break;	      /*	       * Begin option subnegotiation...	       */	    case SB:	      state = TS_SB;	      SB_CLEAR ();	      continue;	    case WILL:	      state = TS_WILL;	      continue;	    case WONT:	      state = TS_WONT;	      continue;	    case DO:	      state = TS_DO;	      continue;	    case DONT:	      state = TS_DONT;	      continue;	    case EOR:	      if (his_state_is_will (TELOPT_EOR))		send_eof ();	      break;	      /*	       * Handle RFC 10xx Telnet linemode option additions	       * to command stream (EOF, SUSP, ABORT).	       */	    case xEOF:	      send_eof ();	      break;	    case SUSP:	      send_susp ();	      break;	    case ABORT:	      send_brk ();	      break;	    case IAC:	      pty_output_byte (c);	      break;	    }	  state = TS_DATA;	  break;	case TS_SB:	  if (c == IAC)	    state = TS_SE;	  else	    SB_ACCUM (c);	  break;	case TS_SE:	  if (c != SE)	    {	      if (c != IAC)		{		  /*		   * bad form of suboption negotiation.		   * handle it in such a way as to avoid		   * damage to local state.  Parse		   * suboption buffer found so far,		   * then treat remaining stream as		   * another command sequence.		   */		  /* for DIAGNOSTICS */		  SB_ACCUM (IAC);		  SB_ACCUM (c);		  subpointer -= 2;		  SB_TERM ();		  suboption ();		  state = TS_IAC;		  goto gotiac;		}	      SB_ACCUM (c);	      state = TS_SB;	    }	  else	    {	      /* for DIAGNOSTICS */	      SB_ACCUM (IAC);	      SB_ACCUM (SE);	      subpointer -= 2;	      SB_TERM ();	      suboption ();	/* handle sub-option */	      state = TS_DATA;	    }	  break;	case TS_WILL:	  willoption (c);	  state = TS_DATA;	  continue;	case TS_WONT:	  wontoption (c);	  state = TS_DATA;	  continue;	case TS_DO:	  dooption (c);	  state = TS_DATA;	  continue;	case TS_DONT:	  dontoption (c);	  state = TS_DATA;	  continue;	default:	  syslog (LOG_ERR, "telnetd: panic state=%d\n", state);	  printf ("telnetd: panic state=%d\n", state);	  exit (1);	}    }}				/* end of telrcv *//* * The will/wont/do/dont state machines are based on Dave Borman's * Telnet option processing state machine. * * These correspond to the following states: *      my_state = the last negotiated state *      want_state = what I want the state to go to *      want_resp = how many requests I have sent * All state defaults are negative, and resp defaults to 0. * * When initiating a request to change state to new_state: * * if ((want_resp == 0 && new_state == my_state) || want_state == new_state) { *      do nothing; * } else { *      want_state = new_state; *      send new_state; *      want_resp++; * } * * When receiving new_state: * * if (want_resp) { *      want_resp--; *      if (want_resp && (new_state == my_state)) *              want_resp--; * } * if ((want_resp == 0) && (new_state != want_state)) { *      if (ok_to_switch_to new_state) *              want_state = new_state; *      else *              want_resp++; *      send want_state; * } * my_state = new_state; * * Note that new_state is implied in these functions by the function itself. * will and do imply positive new_state, wont and dont imply negative. * * Finally, there is one catch.  If we send a negative response to a * positive request, my_state will be the positive while want_state will * remain negative.  my_state will revert to negative when the negative * acknowlegment arrives from the peer.  Thus, my_state generally tells * us not only the last negotiated state, but also tells us what the peer * wants to be doing as well.  It is important to understand this difference * as we may wish to be processing data streams based on our desired state * (want_state) or based on what the peer thinks the state is (my_state). * * This all works fine because if the peer sends a positive request, the data * that we receive prior to negative acknowlegment will probably be affected * by the positive state, and we can process it as such (if we can; if we * can't then it really doesn't matter).  If it is that important, then the * peer probably should be buffering until this option state negotiation * is complete. * */voidsend_do (int option, int init){  if (init)    {      if ((do_dont_resp[option] == 0 && his_state_is_will (option)) ||	  his_want_state_is_will (option))	return;      /*       * Special case for TELOPT_TM:  We send a DO, but pretend       * that we sent a DONT, so that we can send more DOs if       * we want to.       */      if (option == TELOPT_TM)	set_his_want_state_wont (option);      else	set_his_want_state_will (option);      do_dont_resp[option]++;    }  net_output_data (doopt, option);  DEBUG(debug_options, 1, printoption ("td: send do", option));}#ifdef	AUTHENTICATIONextern void auth_request ();#endifextern void doclientstat ();#ifdef	ENCRYPTIONextern void encrypt_send_support ();#endif /* ENCRYPTION */voidwilloption (int option){  int changeok = 0;  void (*func) () = 0;  /*   * process input from peer.   */  DEBUG(debug_options, 1, printoption ("td: recv will", option));  if (do_dont_resp[option])    {      do_dont_resp[option]--;      if (do_dont_resp[option] && his_state_is_will (option))	do_dont_resp[option]--;    }  if (do_dont_resp[option] == 0)    {      if (his_want_state_is_wont (option))	{	  switch (option)	    {	    case TELOPT_BINARY:	      init_termbuf ();	      tty_binaryin (1);	      set_termbuf ();	      changeok++;	      break;	    case TELOPT_ECHO:

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧洲激情一区二区| 中文字幕一区不卡| 青青青爽久久午夜综合久久午夜 | 七七婷婷婷婷精品国产| 欧美日韩午夜在线视频| 香蕉成人伊视频在线观看| 777久久久精品| 久久精品国产精品青草| 精品国产亚洲在线| 成人美女在线视频| 一区二区三区在线视频免费观看| 欧美亚洲国产一区在线观看网站 | 国产日产欧美一区二区视频| 成人蜜臀av电影| 亚洲影视在线播放| 91精品国产欧美日韩| 国产精品99久| 一区二区三区精品| 日韩一区二区三区视频| 国产精品一二三| 亚洲制服丝袜av| 精品国精品国产| 91久久精品国产91性色tv| 九色综合狠狠综合久久| 1024精品合集| 日韩欧美一级特黄在线播放| 国产suv精品一区二区三区| 一区二区欧美国产| 久久免费视频色| 欧美视频三区在线播放| 激情欧美日韩一区二区| 亚洲欧美另类在线| 久久久久久久久伊人| 欧美图区在线视频| 懂色一区二区三区免费观看| 五月综合激情网| 中文字幕在线免费不卡| 精品久久一区二区| 欧洲精品一区二区| 成人av先锋影音| 蜜臀va亚洲va欧美va天堂| 亚洲视频一区二区免费在线观看 | 欧美色视频一区| 国产精品白丝jk黑袜喷水| 天天色综合成人网| 亚洲欧美视频在线观看视频| 久久久久国产一区二区三区四区| 91国偷自产一区二区三区成为亚洲经典 | 一区二区三区av电影| 国产精品视频一二三区| 欧美不卡一区二区| 777午夜精品视频在线播放| 91精彩视频在线| 99久久er热在这里只有精品66| 激情小说欧美图片| 日韩综合在线视频| 亚洲第一狼人社区| 亚洲欧洲制服丝袜| 亚洲少妇中出一区| 国产精品视频麻豆| 中文字幕乱码一区二区免费| 精品国产百合女同互慰| 欧美一区二区三区在线看| 欧美日韩黄色一区二区| 在线观看亚洲成人| 色激情天天射综合网| av成人免费在线| av一区二区三区四区| 成人精品一区二区三区中文字幕| 国产精品影视在线观看| 狠狠v欧美v日韩v亚洲ⅴ| 老司机精品视频导航| 日韩av在线发布| 日本亚洲电影天堂| 欧美96一区二区免费视频| 婷婷综合五月天| 日本一道高清亚洲日美韩| 丝瓜av网站精品一区二区| 婷婷久久综合九色综合绿巨人| 亚洲国产视频a| 天天综合色天天综合色h| 视频一区二区三区中文字幕| 日韩精品成人一区二区在线| 天堂蜜桃一区二区三区| 天天av天天翘天天综合网色鬼国产 | 日韩不卡一区二区三区| 日韩1区2区3区| 久久国产婷婷国产香蕉| 国产在线精品一区二区夜色 | 亚洲精品乱码久久久久久黑人| 亚洲欧美激情插| 亚洲韩国一区二区三区| 人禽交欧美网站| 国产一区二区三区四区在线观看| 国产aⅴ精品一区二区三区色成熟| 东方欧美亚洲色图在线| 91浏览器在线视频| 欧美日韩一区二区三区在线看| 欧美一区二区黄| 久久一留热品黄| 亚洲人123区| 午夜av电影一区| 国产久卡久卡久卡久卡视频精品| 国产成人午夜电影网| 99re6这里只有精品视频在线观看| 在线免费观看日韩欧美| 日韩欧美一区二区在线视频| 日本一区二区电影| 亚洲综合色在线| 国产精品一级片| 91蝌蚪porny九色| 欧美一区二区在线视频| 欧美国产一区二区| 三级亚洲高清视频| 成人晚上爱看视频| 欧美剧情片在线观看| 国产亚洲精品资源在线26u| 一区二区三区四区国产精品| 蜜臀av性久久久久蜜臀aⅴ四虎 | 国产精品一区二区三区网站| 色综合一区二区三区| 欧美一区二区三区色| 国产精品美女久久久久久| 日日欢夜夜爽一区| 成人国产免费视频| 日韩精品一区二区三区中文精品| 国产精品日产欧美久久久久| 免费在线观看视频一区| 91亚洲国产成人精品一区二三| 日韩一级成人av| 亚洲精品国产成人久久av盗摄 | 精品一区二区精品| 一本大道av伊人久久综合| 日韩视频一区在线观看| ㊣最新国产の精品bt伙计久久| 麻豆久久一区二区| 日本韩国欧美一区二区三区| 国产视频一区二区在线| 美女在线观看视频一区二区| 91免费视频网| 国产精品久久久久久久久快鸭 | 国产精品18久久久久久vr| 337p亚洲精品色噜噜狠狠| 一区二区三区日韩精品| 成人一区二区视频| 久久新电视剧免费观看| 日韩激情av在线| 欧美综合天天夜夜久久| 国产精品久久久久一区| 国产99久久久久久免费看农村| 日韩欧美在线网站| 日本不卡一区二区三区高清视频| 在线国产电影不卡| 亚洲综合一区二区| 91免费视频网| 一区二区三区精品视频| 色噜噜夜夜夜综合网| 中文字幕一区视频| 国产jizzjizz一区二区| 欧美激情综合五月色丁香小说| 久久国产精品无码网站| 日韩区在线观看| 日韩在线播放一区二区| 欧美日韩一区二区三区不卡| 亚洲午夜影视影院在线观看| 99精品视频在线播放观看| 中文字幕亚洲欧美在线不卡| 国产91精品一区二区麻豆网站| 国产色综合一区| 国产成+人+日韩+欧美+亚洲| 久久精品一区四区| 丁香婷婷深情五月亚洲| 中文字幕精品综合| 99精品视频中文字幕| 亚洲日本青草视频在线怡红院| 99久久国产综合色|国产精品| 中文字幕在线不卡一区| 成人av中文字幕| 亚洲精品高清视频在线观看| 在线视频一区二区三区| 日韩综合小视频| 亚洲精品一区二区三区影院| 国产乱码字幕精品高清av | 久久国产剧场电影| 国产午夜精品一区二区三区四区| 国产成人亚洲综合a∨婷婷| 国产欧美日产一区| 99精品久久99久久久久| 亚洲图片一区二区| 日韩欧美高清dvd碟片| 国产一区二区在线免费观看| 国产精品婷婷午夜在线观看| 99久久精品国产导航| 性欧美疯狂xxxxbbbb| 日韩一区二区三区视频| 国产凹凸在线观看一区二区| 亚洲日本丝袜连裤袜办公室| 6080yy午夜一二三区久久| 欧美一区二区三区在线电影 | 国产精品午夜春色av|