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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? chat.c

?? ipx協(xié)議聊天程序
?? C
?? 第 1 頁(yè) / 共 4 頁(yè)
字號(hào):
			/* SPX Communication Program */
   # include <stdio.h>
   # include <process.h>
   # include <stdlib.h>
   # include <mem.h>
   # include <string.h>
   # include <dos.h>
   # include <bios.h>
   # include <conio.h>
   # include <graphics.h>
   # include "key.h"
   # include "spx.h"

   # define TRUE 1
   # define FALSE 0
   int mouse_installed=FALSE;

   int mDelay[32]=   /* Two tager music */
   {
     5,5,5,5,5,
     5,5,5,5,5,
     10,5,5,10,
     2,2,2,2,5,5,
     2,2,2,2,5,5,
     5,5,10,5,5,10
   };
   int mFreq[32]=
   {
     262,294,330,262,262,
     294,330,262,330,349,
     392,330,349,392,392,
     440,392,349,330,262,
     392,440,392,349,330,
     262,294,196,262,294,
     196,262
   };

  void scroll_screen(int startx,int starty,int endx,int endy,int k,int m);
  void cls_screen1();
  void cls_screen2();
  void cls_screen3();
  void cls_screen4();
  int in_key();
  int input_username(char *buf1,int flags);
  int input_filename(char *buf2);
  int cursor_upline(int curx,int cury);
  int cursor_downline(int curx,int cury,int starty,int endy);
  void cursor_backspace(int curx,int cury,int startx,int endx);
  void information_win(char *buf3);
  void goto_xy(int x,int y);
  void draw_border(int startx,int starty,int endx,int endy);
  void window_limit(int startx,int starty,int endx,int endy,int ch);
  void win_limit(int startx,int endx,int ch);
  int  window_gets(int startx,int starty,int endx,int endy,unsigned char *s);
  int  win_gets(int startx,int endx,unsigned char *s);
  SPXHEADER listen_header_list[5],receive_header_list[5],listen_header,send_header, call_header, term_header;
  SPXECB listen_ECB_list[5],receive_ECB_list[5],send_ECB,listen_ECB,call_ECB, term_ECB;

 /* SPX(Sepuence Packet eXchange) protocol schedule event of NOVELL network */
   unsigned int Initialize()
	   {
	     union REGS inregs,outregs;
		   inregs.x.bx=SPX_Initialize;
		   inregs.h.al=0;
		   int86(0x7a,&inregs,&outregs);
		   outregs.h.ah=0;
		   return outregs.x.ax;
	   }

   unsigned int OpenSocket(unsigned int socket)
	   {
	     union REGS inregs,outregs;
		   inregs.x.dx=socket;
		   inregs.x.bx=SPX_OpenSocket;
		   inregs.x.ax=0;
		   int86(0x7a,&inregs,&outregs);
		   return outregs.x.dx;
	   }

   void CloseSocket(unsigned int socket)
	   {
	     union REGS inregs,outregs;
	      inregs.x.dx=socket;
	      inregs.x.bx=SPX_CloseSocket;
	      inregs.x.ax=0;
	      int86(0x7a,&inregs,&outregs);
	   }

   void ListenForPacket(char *pointer, unsigned int length,unsigned int source_socket,unsigned int i)
	   {
	     union REGS inregs, outregs;
	     struct SREGS segregs;
	      memset( &receive_ECB_list[i],0,sizeof(SPXECB));
	      memset( &receive_header_list[i],0,sizeof(SPXHEADER));
	      receive_ECB_list[i].socket_number=source_socket;
	      receive_ECB_list[i].packet_count=2;
	      receive_ECB_list[i].packet[0].address=&receive_header_list[i];
	      receive_ECB_list[i].packet[0].length=sizeof(SPXHEADER);
	      receive_ECB_list[i].packet[1].address=pointer;
	      receive_ECB_list[i].packet[1].length=length;

	      segregs.es=FP_SEG((void far *)&receive_ECB_list[i]);
	      inregs.x.si=FP_OFF((void far *)&receive_ECB_list[i]);
	      inregs.x.bx=SPX_ListenForPacket;
	      int86x(0x7a,&inregs,&outregs,&segregs);
	   }

   void  ListenForConnection(unsigned int mysocket)
	   {
	     union REGS inregs,outregs;
	     struct SREGS segregs;
	       memset( &listen_ECB,0,sizeof(SPXECB));
	       memset( &listen_header,0,sizeof(SPXHEADER));
	       listen_ECB.socket_number=mysocket;
	       listen_ECB.packet_count=1;
	       listen_ECB.packet[0].address=&listen_header;
	       listen_ECB.packet[0].length=sizeof(SPXHEADER);

	       segregs.es=FP_SEG((void far *)&listen_ECB);
	       inregs.x.si=FP_OFF((void far *)&listen_ECB);
	       inregs.x.bx=SPX_ListenForConnection;
	       inregs.h.al=0x10;
	       inregs.h.ah=0;
	       int86x(0x7a,&inregs,&outregs,&segregs);
	   }

   unsigned int GetConnectionNum(char *user_name)
	   {
	     union REGS inregs,outregs;
	     struct SREGS segregs;
	     struct {
		     unsigned int length;
		     unsigned char buffer_type;
		     unsigned int object_type;
		     unsigned char name_len;
		     unsigned char name[47];
		    }request_buffer;
	     struct {
		     unsigned int length;
		     unsigned char number_connections;
		     unsigned char connection_num[100];
		    }reply_buffer;
	       request_buffer.length=51;
	       request_buffer.buffer_type=0x15;
	       request_buffer.object_type=0x100;
	       request_buffer.name_len=(unsigned char)strlen(user_name);
	       strcpy(request_buffer.name,user_name);
	       reply_buffer.length=101;

	       segregs.ds=FP_SEG((void far *)&request_buffer);
	       inregs.x.si=FP_OFF((void far *)&request_buffer);
	       segregs.es=FP_SEG(( void far *)&reply_buffer);
	       inregs.x.di=FP_OFF((void far *)&reply_buffer);
	       inregs.h.ah=0xe3;
	       int86x(0x21,&inregs,&outregs,&segregs);

	       if(outregs.h.al!=0) return 0;
	       if(reply_buffer.number_connections==0) return 0;
	       outregs.h.ah=0;
	       outregs.h.al=reply_buffer.connection_num[0];
	       return outregs.x.ax;
	   }

  unsigned int GetNetworkAddress(char connection_number,char *network_number,char *physical_address)
	   {
	     union REGS inregs,outregs;
	     struct SREGS segregs;
	     struct {
		       unsigned int length;
		       unsigned char buffer_type;
		       unsigned char connection_number;
		    }request_buffer;
	     struct{
		      unsigned int length;
		      unsigned char network_number[4];
		      unsigned char physical_address[6];
		      unsigned int server_socket;
		    }reply_buffer;
	      request_buffer.length=2;
	      request_buffer.buffer_type=0x13;
	      request_buffer.connection_number=connection_number;
	      reply_buffer.length=12;

	      segregs.ds=FP_SEG((void far *)&request_buffer);
	      inregs.x.si=FP_OFF((void far*)&request_buffer);
	      segregs.es=FP_SEG((void far *)&reply_buffer);
	      inregs.x.di=FP_OFF((void far *)&reply_buffer);
	      inregs.h.ah=0xe3;
	      int86x(0x21,&inregs,&outregs,&segregs);
	      memcpy(network_number,reply_buffer.network_number,4);
	      memcpy(physical_address,reply_buffer.physical_address,6);
	      outregs.h.ah=0;
	      return outregs.x.ax;
	   }

  void ListenForSequencePacket( char *pointer,unsigned int length,unsigned int source_socket)
	   {
	     unsigned int i;
	     union REGS inregs,outregs;
	     struct SREGS segregs;
	      for(i=0;i<5;i++) {
				 memset(&listen_ECB_list[i],0,sizeof(SPXECB));
				 memset(&listen_header_list[i],0,sizeof(SPXHEADER));
				 listen_ECB_list[i].socket_number=source_socket;
				 listen_ECB_list[i].packet_count=2;
				 listen_ECB_list[i].packet[0].address=&listen_header_list[i];
				 listen_ECB_list[i].packet[0].length=sizeof(SPXHEADER);
				 listen_ECB_list[i].packet[1].address=pointer;
				 listen_ECB_list[i].packet[1].length=length;
				 segregs.es=FP_SEG((void far *)&listen_ECB_list[i]);
				 inregs.x.si=FP_OFF((void far *)&listen_ECB_list[i]);
				 inregs.x.bx=SPX_ListenForPacket;
				 int86x(0x7a,&inregs,&outregs,&segregs);
			       }
	   }

  unsigned int EstablishConnection(unsigned int dest_connect_num,unsigned int source_socket)
	   {
	      union REGS inregs ,outregs;
	      struct SREGS segregs;
	      char network_number[4],physical_node[6];
	       memset(&call_ECB,0,sizeof(SPXECB));
	       memset(&call_header,0,sizeof(SPXHEADER));
	       GetNetworkAddress(dest_connect_num,&network_number[0],&physical_node[0]);
	       memcpy(call_header.dest_network_number,network_number,4);
	       memcpy(call_header.dest_network_node,physical_node,6);
	       call_header.dest_network_socket=receive_socket;
	       call_ECB.socket_number=source_socket;
	       call_ECB.packet_count=1;
	       call_ECB.packet[0].address=&call_header;
	       call_ECB.packet[0].length=sizeof(SPXHEADER);
	       segregs.es=FP_SEG((void far *)&call_ECB);
	       inregs.x.si=FP_OFF((void far *)&call_ECB);
	       inregs.x.bx=SPX_EstablishConnection;
	       inregs.h.ah=0;
	       inregs.h.al=0x5;
	       int86x(0x7a,&inregs,&outregs,&segregs);
	       return outregs.x.dx;
	    }

    void SendPacket(char *pointer,unsigned int length,unsigned int connection_id)
	   {
	       union REGS inregs,outregs;
	       struct SREGS segregs;
		memset(&send_ECB,0,sizeof(SPXECB));
		memset(&send_header,0,sizeof(SPXHEADER));
		send_ECB.packet_count=2;
		send_ECB.packet[0].address=&send_header;
		send_ECB.packet[0].length=sizeof(SPXHEADER);
		send_ECB.packet[1].address=pointer;
		send_ECB.packet[1].length=length;

		segregs.es=FP_SEG((void far *)&send_ECB);
		inregs.x.si=FP_OFF((void far *)&send_ECB);
		inregs.x.bx=SPX_SendPacket;
		inregs.x.dx=connection_id;
		int86x(0x7a,&inregs,&outregs,&segregs);
	  }

     void TerminateConnection(unsigned int connection_id)
	  {
	       union REGS inregs,outregs;
	       struct SREGS segregs;
	       unsigned int i;
		memset(&term_ECB,0,sizeof(SPXECB));
		send_ECB.packet_count=1;
		send_ECB.packet[0].address=&term_header;
		send_ECB.packet[0].length=sizeof(SPXHEADER);

		segregs.es=FP_SEG((void far *)&term_ECB);
		inregs.x.si=FP_OFF((void far *)&term_ECB);
		inregs.x.bx=SPX_TerminateConnection;
		inregs.x.dx=connection_id;
		int86x(0x7a,&inregs,&outregs,&segregs);
	   }

	      /*  Relay chat  program segment  */
     int receive_chat(unsigned char buf[3][BUFSIZE])
	   {
	     unsigned int my_socket,i,page,ch; /* Receive chat string function */

	       if(Initialize()==0){
				    information_win(" ERROR: SPX NOT INSTALL.");
				    getch();
				    cls_screen2();
				    printf(" ERROR:SPX NOT INSTALL.");
				    exit(0);
				   }
	       if((my_socket=OpenSocket(receive_socket))==0)
				   {
				      information_win(" ERROR: NOT SOCKET. ");
				      getch();
				      cls_screen1();
				      printf(" ERROR: NOT SOCKET. ");
				      exit(0);
				   }
		for(i=0;i<4;i++)
		      ListenForPacket(&buf[0][0],534,my_socket,i);
		ListenForConnection(my_socket);
		while(listen_ECB.in_use)
		     {
		       information_win("The chat is listening.");
		       information_win("The chat is listening...");
		       information_win("The chat is listening......");
		       for(i=1;i<20000;i++) ;
		       if(bioskey(1)!=0){
					 if(bioskey(0)==KEY_ESC)
					   {
					     CloseSocket(my_socket);
					     return 0;
					   }
					}
		     }
		page=0;
		while(1) {
			   ListenForPacket(&buf[page][0],534,my_socket,5);
			   while(receive_ECB_list[5].in_use)
				{
				   information_win("The chat is receiving.");
				   information_win("The chat is receiving...");
				   information_win("The chat is receiving.......");
				   for(i=1;i<10000;i++);
				   if(bioskey(1)!=0){
						      if(bioskey(0)==KEY_ESC)
							{
							  CloseSocket(my_socket);
							  return 0;
							}
						     }
				 }
			    for(ch=0;buf[page][ch]!='\0'&&ch<534;ch++);
			    if(ch<534)
				 break;
			    else
				 page++;
			  }
		if(receive_ECB_list[5].completion_code==0x00)
		       information_win("This receive is successful!");
		 else
		       information_win("This receive is failure!");
		CloseSocket(my_socket);
		return 1;
	   }

       /* Send chat string function */
    void send_chat(unsigned char buf[3][BUFSIZE])
	   {
	       unsigned  int my_socket,dest_connect_num,connection_id,page,ch,i;
	       unsigned  char work_buffer[534];
	       char username_buf[43],key1;
	       int key;
		 key=input_username(&username_buf[0],0);
		 if(key==0)
			 return;
		  else
		    if(Initialize()==0){
					information_win(" ERROR: SPX NOT INSTALL.");
					getch();
					cls_screen4();
					printf("ERROR: SPX NOT INSTALL.");
					exit(0);
				       }
		  if((my_socket=OpenSocket(send_socket))==0)
				     {
					information_win(" ERROR: NOT SOCKET.");
					getch();
					cls_screen3();
					printf("ERROR: NOT SOCKET. ");
					exit(0);
				      }
		   ListenForSequencePacket(&work_buffer[0],534,my_socket);
		   while((dest_connect_num=GetConnectionNum(&username_buf[0]))==0)
				     {
				      information_win(" ERROR: not logged on.");
				      key1=getch();
				      if(key1==27){
						   cls_screen2();
						   printf("ERROR: not logged on.");
						   CloseSocket(my_socket);
						   exit(0);
						  }
				      input_username(&username_buf[0],0);
				     }
		    connection_id=EstablishConnection(dest_connect_num,my_socket);
		    while(call_ECB.in_use)
			 {
			   information_win("The chat is connectioning.");
			   information_win("The chat is connectioning...");
			   information_win("The chat is connectioning......");
			   for(i=1;i<10000;i++) ;
			 }
		    if( call_ECB.completion_code!=0x00)
		     {
		      information_win("The Establish_connection routine is failure!");
		      getch();
		      CloseSocket(my_socket);
		      cls_screen1();
		      printf("The Establish_connection routine is failure!");
		      exit(0);
		     }
		     page=0;
		     while(1)
			  {
			    for(ch=0;buf[page][ch]!='\0'&& ch<534;ch++);
			    if(ch<534){
				       SendPacket(&buf[page][0],534,connection_id);
				       while(send_ECB.in_use)
					 {
					   information_win("The chat is sending.");
					   information_win("The chat is sending...");
					   information_win("The chat is sending.......");
					   for(i=1;i<18000;i++) ;
					 }
					break;
				      }
			     else  {
				     SendPacket(&buf[page][0],534,connection_id);
				     while(send_ECB.in_use){
							   information_win("The chat is sending.");
							   information_win("The chat is sending...");
							   information_win("The chat is sending......");
							   for(i=1;i<18000;i++) ;
							   if(bioskey(1)!=0)
							    {
							     if(bioskey(0)==KEY_ESC)
							      {
							       CloseSocket(my_socket);
							       return;
							      }
							    }
							   }
				     page++;
				   }
			  }
		     information_win(" The send is successful!");
		     TerminateConnection(connection_id);
		      while(term_ECB.in_use);
		     CloseSocket(my_socket);
	    }

      /* Send chat string message window */
    void send_win(int active,unsigned char buf[3][BUFSIZE])
	   {
	     int key;
	     if(active==1) {
			     textbackground(5);
			     textcolor(15);
			     window(4,3,77,12);
			     draw_border(3,3,76,12);
			     gotoxy(31,2);
			     cprintf(" SEND MESSAGE \r\n");
			     textbackground(1);
			     textcolor(15);      /* blue background & white foreground */
			     window(5,5,76,12);
			     clrscr();
			     key=window_gets(5,5,76,12,&buf[0][0]); /* Send window accept string rule */
			     if(key==0)
				  {
				    clrscr();
				    return;
				  }
			       else{
				    send_chat(&buf[0]);
				   }
			  }
	    }

       /* Receive chat string message window */
    void receive_win(int active,unsigned char buf[3][BUFSIZE])
	    {
	      unsigned char *s;
	      int key;
	      if(active==1){    /* Action flag equal 1 is show receive message window */
			      textbackground(5);
			      textcolor(15);
			      window(4,13,77,22);
			      draw_border(3,13,76,22);
			      gotoxy(29,2);
			       cprintf(" RECEIVE  MESSAGE \r\n");
			      textbackground(1);
			      textcolor(15);
			      window(5,15,76,22);
			      clrscr();           /* blue background & white foreground */
			      key=receive_chat(&buf[0]);
			      if(key==0)
				 return;
			      textbackground(1);
			      textcolor(15);
			      window(5,15,76,22);
			      clrscr();
			      gotoxy(1,1);
			      s=&buf[0][0];
			      while(1){
				       if(*s=='\n')
					{
					  if(wherey()==8){
							   s++;
							   gotoxy(72,wherey());
							 }
					    else{
						  cputs("\n");
						  s++;
						  gotoxy(1,wherey());
						}
					}
					 else{
					      if(wherey()==8 && wherex()==72)
						{
						  getch();
						  cprintf(" ");
						}
					      cprintf("%c",*s);
					      s++;
					     }
				       if(*s=='\0')
					  break;
				      }
			   }
	   }

    void relay_chat()
	{  int active,ky;
	   unsigned char send_buf[3][BUFSIZE],receive_buf[3][BUFSIZE];
	      cls_screen1();
	      highvideo();
	      textattr(WHITE+(GREEN<<4)+BLINK); /* green background & white foreground */
	      window(1,1,80,2);
	      gotoxy(3,1);
	      cprintf("Press TAB key to [ send window <--> receive window ] with Press ESC to exit");
	      gotoxy(17,2);
	      cprintf("Press '@' key to end && send_message to start!");

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日日摸夜夜添夜夜添精品视频| 免费观看30秒视频久久| 久久99热99| 91精品免费观看| 秋霞国产午夜精品免费视频| 欧美日本一区二区三区四区| 亚洲一区免费视频| 欧美亚州韩日在线看免费版国语版 | 亚洲精选视频在线| 在线观看国产91| 亚洲精选视频在线| 欧美精品亚洲二区| 国内精品久久久久影院色| 日本一区免费视频| 色88888久久久久久影院按摩| 视频一区视频二区中文| 国产夜色精品一区二区av| 91网站黄www| 蜜臀久久99精品久久久久久9| 中文字幕一区二区三区在线播放| 91麻豆产精品久久久久久| 麻豆精品视频在线观看免费| 亚洲永久免费视频| 欧美激情在线免费观看| 日本一区二区三区四区在线视频| 日韩视频在线一区二区| 正在播放亚洲一区| 欧美三级资源在线| 欧美精品一卡二卡| 欧美日韩一区二区三区高清| 在线一区二区视频| 欧美精品 日韩| 精品少妇一区二区三区视频免付费| 欧美中文一区二区三区| 欧美精品xxxxbbbb| 精品久久免费看| 国产欧美日韩另类一区| 成人免费在线观看入口| 亚洲精品国产a| 免费成人在线网站| 男人的j进女人的j一区| 国产99久久久国产精品潘金| 99精品国产99久久久久久白柏| 男女男精品网站| 国产成人免费网站| 99麻豆久久久国产精品免费| 在线观看日韩电影| 日韩欧美色综合网站| 久久精品视频在线免费观看| 国产女人18毛片水真多成人如厕| 亚洲男女一区二区三区| 天使萌一区二区三区免费观看| 久久精品理论片| 在线精品视频小说1| 欧美欧美欧美欧美| 国产精品久久久久久久久晋中| 一区二区在线观看不卡| 成人综合婷婷国产精品久久免费| 欧美性生活一区| 欧美韩国日本综合| 午夜精品福利在线| 成人午夜大片免费观看| 日本韩国一区二区| 精品国产免费人成电影在线观看四季 | 岛国精品在线观看| 91精品国产一区二区| 一区二区三区欧美| hitomi一区二区三区精品| 久久精品人人做人人爽人人| 麻豆成人免费电影| 欧美一级欧美三级在线观看| 亚洲二区视频在线| 国产精华液一区二区三区| 精品国产自在久精品国产| 亚洲一区二区三区自拍| 精品视频1区2区| 一区二区三区中文字幕电影| 色综合天天天天做夜夜夜夜做| 国产精品二三区| 99精品视频一区| 亚洲色图都市小说| 欧美精品乱码久久久久久| 日欧美一区二区| 精品国产不卡一区二区三区| 国产盗摄精品一区二区三区在线| 国产精品欧美一级免费| 色乱码一区二区三区88| 三级一区在线视频先锋| 久久午夜老司机| www.欧美日韩国产在线| 日日夜夜精品视频免费| 欧美v亚洲v综合ⅴ国产v| 国产精品主播直播| 亚洲综合在线电影| 国产精品丝袜一区| 欧美在线一区二区| 国产不卡在线一区| 亚洲第一二三四区| 日韩美女啊v在线免费观看| 欧美视频一区二| 成av人片一区二区| 久久www免费人成看片高清| 一区在线播放视频| 久久麻豆一区二区| 欧美一区二区精品在线| 91视频免费播放| 国产·精品毛片| 国产成人精品一区二| 久久99热这里只有精品| 亚洲一二三四区不卡| 亚洲精选视频在线| 中文字幕五月欧美| 久久男人中文字幕资源站| 9l国产精品久久久久麻豆| 精品一区二区在线免费观看| 日产国产高清一区二区三区| 亚洲午夜激情av| 亚洲成av人综合在线观看| 亚洲国产精品精华液网站| 亚洲久草在线视频| 亚洲 欧美综合在线网络| 性做久久久久久| 日本伊人午夜精品| 精品一区二区精品| 成人一区二区三区中文字幕| 不卡视频一二三四| 欧美日本一道本在线视频| 欧美人妖巨大在线| 久久精品亚洲精品国产欧美kt∨| 日韩三级在线观看| 最近中文字幕一区二区三区| 亚洲精品视频在线观看网站| 日韩av成人高清| 色老头久久综合| 久久久精品天堂| 日韩电影在线免费看| 成人涩涩免费视频| 91精品国产美女浴室洗澡无遮挡| 国产精品天干天干在观线 | 一区二区三区在线免费视频 | 日韩欧美国产综合一区| 亚洲精品乱码久久久久久| 久久国产欧美日韩精品| 在线观看欧美黄色| 欧美极品少妇xxxxⅹ高跟鞋 | 国产亚洲精品资源在线26u| 日韩av电影免费观看高清完整版在线观看| 成人h精品动漫一区二区三区| 日韩一区二区在线看片| 亚洲高清不卡在线观看| 91一区二区三区在线播放| 中文字幕一区二区不卡| 国产一区啦啦啦在线观看| 日韩一区二区电影| 精品夜夜嗨av一区二区三区| 欧美一区二区三区四区高清| 日本伊人精品一区二区三区观看方式| 92精品国产成人观看免费 | 一区二区三区 在线观看视频| 9色porny自拍视频一区二区| 中文字幕亚洲在| 欧美日韩1234| 久久成人久久爱| 国产日韩欧美精品综合| 91亚洲精品一区二区乱码| 亚洲精品国产精华液| 欧美久久一二区| 国产91综合网| 一个色在线综合| 欧美xxxx在线观看| 国产91对白在线观看九色| 亚洲成人在线网站| 国产三级精品在线| 欧美日韩免费一区二区三区视频| 韩国欧美一区二区| 国产精品激情偷乱一区二区∴| 91色在线porny| 免费日韩伦理电影| 成人免费在线视频| 欧美草草影院在线视频| 岛国av在线一区| 午夜精品久久久久久久久| 18成人在线视频| 欧美亚洲一区二区在线观看| 亚洲韩国精品一区| 国产精品乱人伦| 欧美韩日一区二区三区四区| 555夜色666亚洲国产免| 97精品电影院| 色综合久久久网| 色综合亚洲欧洲| 99久久99久久综合| 99国产麻豆精品| 色哟哟欧美精品| 色噜噜狠狠色综合中国 | 日本道在线观看一区二区| 国产精品夜夜爽| 国产成人在线电影| 国产精品资源站在线| 国产精品亚洲视频|