/* 1Client.c: Implement one TCP/IP client connection. Support one client for TCP port 10000. Compiler: BC++ 3.1, Turbo C++ 1.01(3.01) Compile mode: Large Project: 1Client.c ..\lib\7188el.Lib ..\lib\tcpip32.lib ..\lib\FW_nnnnn.LIB Hordware: I-7188EX [Dec 18, 2008] by Liam [Dec 23, 2010] by Nicholas */ #include #include #include "..\lib\7188e.h" #include "..\lib\Tcpip32.h" #include "..\lib\MFW.h" #define BUFSIZE 1460 // read/write buffer size void do_GetResponse( int skt,int mode); // TCP client's callback function void AutoConnect(int skt); void ShowSocketStatus(void); TCP_CLIENT TcpClient= // Initialize a TCP Client with default IP 10.0.8.16 and port 10000 { "10.0.8.16", // char *ip; 10000, // unsigned port; -1, // int socket; 0, // int tmpState; -2, // int bConnected; 2, // int iConnectTryCount; // Frequency to reconnect to remote device 5000, // long lConnetTimeout; // Timeout to connect to remote device(0: default value is 400ms) 0, // long ltmpT; do_GetResponse, // void (*CallBackFun)(int skt); AutoConnect, // void (*LoopFun)(int skt); }; char *GetModuleName(void) // User's program must support this function for UDP search { return "I-7188EX-FW"; } char *GetAliasName(void) // User's program must support this function for UDP search { return "test1" ; } unsigned char MyIp[4]; unsigned long ltime1; unsigned long ltime2; unsigned long glConectCount; int Prbconnected,PreTemp; void XS_UserInit(int argc,char *argv[]) { extern int bAcceptBroadcast; extern unsigned long ACKDELAY; // variable in tcp.c extern long MAXTXTOUT; extern long ET_TOUT; void UserLoop(void); char version[20]; char MsgTest[]="command"; int MsgTest_len=sizeof(MsgTest); int i,port; InitLib(); Print("sizeof(MsgTest)=%d\r\n",MsgTest_len); bAcceptBroadcast=0; ACKDELAY=200; XS_GetVersion(version); Print("[X-Server library]: version=%s ",version); XS_GetLibDate(version); Print("date=%s\r\n",version); GetTcpipLibDate(version); Print("Tcpip library version:%X, Library Date is %s\r\n",GetTcpipLibVer(),version); GetIp(MyIp); Print("IP=%d.%d.%d.%d\r\n",MyIp[0],MyIp[1],MyIp[2],MyIp[3]); //ET_TOUT=200; Print("ET_TOUT =%lu\r\n",ET_TOUT); XS_AddSystemLoopFun(UserLoop); for(i=1; i2000) { if(giprint) Print("TcpClient.bConnected, %d to %d takes %lu ms\r\n",PreTemp,TcpClient.bConnected,lchangetime); else Print("TcpClient.bConnected = %d\r\n",TcpClient.bConnected); Print("TcpClient.iConnectTryCount = %d\r\n", TcpClient.iConnectTryCount); Print("TcpClient.lConnetTimeout = %d\r\n", TcpClient.lConnetTimeout); Print("TcpClient.socket = %d\r\n", TcpClient.socket); Print("TcpClient.tmpState = %d\r\n", TcpClient.tmpState); Print("TcpClient.ltmpT = %lu\r\n", TcpClient.ltmpT); ltime1=GetTimeTicks(); /*****************Connect to Server automaticaly********************************/ if(TcpClient.bConnected==-1) { TcpClient.bConnected=-2; Print("Connection automatically\r\n",TcpClient.bConnected); } } /*******************Debug only******************************/ if(Prbconnected!=TcpClient.bConnected) { giprint=1; lchangetime=GetTimeTicks()-lltime; lltime=GetTimeTicks(); PreTemp=Prbconnected; Prbconnected=TcpClient.bConnected; } // Check whether any data was inputted to command port or not // Command port of I-7188EX is COM1 if(Kbhit()) { switch((key=Getch())) { case 27: //Press 'Esc' key to quit the program QuitMain=1; break; case 0x32: //'2' //Connect to server manually if(TcpClient.bConnected==-1) TcpClient.bConnected=-2; break; default: //The other data come-in Command[idx]=key; if(idx<99) idx++; //Maximum characters of a string ==>99 Putch(key); if(key=='\r') { //The terminal character of a string is '\r' (Press 'Enter' key) Command[idx]=0; Putch('\n'); if(Command[0]=='/') { // '/' denotes that the inputted string was a command if(Command[1]=='Q') { if(TcpClient.bConnected==1) XS_CloseSocket(TcpClient.socket); // Break the TCP connection } else if(Command[1]=='C') { if(TcpClient.bConnected==-1) TcpClient.bConnected=-2; // Build the TCP connection } else if(Command[1]=='0' && Command[2]=='0') { ShowSocketStatus(); // Show the socket status } else { Print("Unsupport command\r\n"); // unknow command } } else if(TcpClient.bConnected==1) { // The String that isn't the command will send to client err= writesocket(TcpClient.socket,Command,idx); Print(Command); if(err<0) { // write error Print( "write error %d, close client socket.\r\n", err); XS_CloseSocket(TcpClient.socket); } } else Print("[do nothing]\r\n"); idx=0; } break; } } } // When connection is establihed, it will be called per user loop void AutoConnect(int skt) { int err; char stemp[64]; if (GetTimeTicks()-ltime2>3000) { Print("Autoconnect %lu\r\n",glConectCount); sprintf(stemp,"Send %lu\r\n",glConectCount++); err=writesocket(skt,stemp,strlen(stemp)); if(err<0) { // write error Print("write error %d, close client socket.\r\n", err); XS_CloseSocket(skt); } ltime2= GetTimeTicks(); } } char buf[BUFSIZE], SendBack[BUFSIZE+2]; // when client is connected, do echo here void do_GetResponse(int skt, int mode) { int i, cc, err, Sendlen; if(!mode) { if(TcpClient.bConnected==1) { Print("Connected\r\n"); ltime2=GetTimeTicks(); glConectCount=0; } else if(TcpClient.bConnected==-1) Print("%s connect failed\r\n",TcpClient.ip); } else { err=cc=readsocket(skt, buf, sizeof(buf)-1); if(err<=0) { // error or disconnected by remote side Print("%d TcpClient close skt = %d\r\n", err, skt); XS_CloseSocket(skt); } else { for(i=0; i