Example #1
0
int main(int argc, char **argv)
{
	if(argc != 2)
	{
		cout << "Usage:\n";
		cout << "\t./server [listen port]\n";
		return -1;
	}

	if(atoi(argv[1]) < 0 || atoi(argv[1]) > 65535)
	{
		cout << "The port must be between 0 and 65535\n";
		return -1;
	}

	MyTcpSocket mySocket;
	if(!mySocket.listen(atoi(argv[1])))
		cout << "There was an error listening\n";

	char data[W*MSS];
	int n;
	
	while((n = mySocket.receive(data)) != -1)
	{
		cout << "Received data from client.\n";
		cout << "echoing " << n << " bytes to client\n";
		mySocket.send(data, n);	// Echo back to client
	}
}
MyTcpSocket* MyTcpSocket::acceptClient(string& clientHostName)
{
	int newSocket;   // the new socket file descriptor returned by the accept systme call

    // the length of the client's address
    struct sockaddr_in clientAddress;    // Address of the client that sent data
    int clientAddressLen = sizeof(struct sockaddr_in);

    // Accepts a new client connection and stores its socket file descriptor
	try 
	{
		if ((newSocket = accept(m_nSocketId, (struct sockaddr *)&clientAddress,&clientAddressLen)) == -1)
		{
			#ifdef WINDOWS_XP
				int errorCode = 0;
				string errorMsg = "error calling accept(): \n";
				detectErrorAccept(&errorCode,errorMsg);
				MyException socketAcceptException(errorCode,errorMsg);
				throw socketAcceptException;
			#endif

			#ifdef UNIX
				MyException unixSocketAcceptException(0,"unix: error calling accept()");
				throw unixSocketAcceptException;
			#endif
        }
	}
    catch(MyException& excp)
	{
		excp.response();
		return NULL;
	}
    
	// Get the host name given the address
    char *sAddress = inet_ntoa((struct in_addr)clientAddress.sin_addr);

	/*******MyHostInfo from ADDRESS**********/
	MyHostInfo clientInfo(string(sAddress),ADDRESS);
	char* hostName = clientInfo.getHostName();
    clientHostName+= string(hostName);
	
    // Create and return the new MyTcpSocket object
    MyTcpSocket* retSocket = new MyTcpSocket();
	//保存与客户端通信的句柄
	retSocket->setSocketId(newSocket);
    return retSocket;
}
Example #3
0
int main()
{
  MyTcpSocket mySocket;

  // Create remote host address
  mySocket.connect("127.0.0.1", 5555);  // Connect

  // Send data
  //while (fgets(sendline, 1024, fp) != NULL)
  //{
		//mySocket.send(string("test").data, );

		//n = mySocket.receive(recvline, MAXLINE);

		//recvline[n] = 0;	/* null terminate */
		//fputs(recvline, stdout);
  //}

  //mySocket.disconnect();

  return 0;
}
Example #4
0
int main(int argc, char* argv[])
{
	// If the user didn't give us the correct command line args, print usage
	if(argc != 4)
	{
		cout << "Usage:\n";
		cout << "\t./client IP Port file\n";
		return -1;
	}

	// If the user entered an invalid port, tell them
	if(atoi(argv[2]) < 0 || atoi(argv[2]) > 65535)
	{
		cout << "The port must be between 0 and 65535\n";
		return -1;
	}

	FILE *receive = fopen(FILENAME, "w");	// The file to write the echoed data to
	FILE *send = fopen(argv[3], "rb");		// The file to send
	if(send == NULL)
	{
		cout << "\"" << argv[3] << "\" could not be read\n";
		return -1;
	}

	if(receive == NULL)
	{
		cout << "\"" << FILENAME << "\" could not be opened for write\n";
		return -1;
	}
	
	// Load the file to send into memory
	fseek (send, 0, SEEK_END);
	unsigned long fileLength = ftell(send);
	rewind (send);
	size_t result;
	char* buffer = new char[fileLength];
	result = fread(buffer, sizeof(buffer[0]), fileLength, send);	// copy the file into the buffer
	fclose(send);

	char recv[fileLength];
	MyTcpSocket mySocket;
	while(!mySocket.connect(argv[1], atoi(argv[2])));	// Keep trying to connect forever
	
	// Iterate over the buffer and send MSS*W at a time
	unsigned long bufsize = fileLength;
  unsigned long total = fileLength;
	unsigned long index = 0;


	while(true)
	{
		int bufSize = fileLength < MSS*W ? fileLength : MSS*W;
		
		// Copy MSS*W into a temp buffer
		char sendBuf[bufSize], recvline[MSS*W];
		for(int i = 0; i < bufSize; ++i, index++)
			sendBuf[i] = buffer[index];
			
    cout << "\t\t\t" << fileLength << "\\" << total << "\n";
		mySocket.send(sendBuf, bufSize);	// Send the chunk
	
		int n = mySocket.receive(recvline);
		fwrite(recvline, sizeof(recvline[0]), n, receive);

		if(bufSize < MSS*W)
			break;
		else
			fileLength -= MSS*W;
	}
	
	fclose(receive);

	mySocket.close();	// Close the socket	

	return 0;
}