发布时间:2012-05-12 17:28:28作者:知识屋
TCP Server端:
#include <iostream>
#include <cstring>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <errno.h>
#define SRVPORT 10005
#define CONNECT_NUM 5
#define MAX_NUM 80
using namespace std;
int main( int argc, char* argv[] )
{
int aSock = -1, srcSock = -1;
int nSrvAddr = -1, cnt = -1;
sockaddr_in sa, serverSockAddr;
sockaddr srvSockAddr;
memset( &srvSockAddr, 0, sizeof(srvSockAddr) );
aSock = socket( AF_INET, SOCK_STREAM, 0 );
if( aSock < 0 )
{
cout<<"Create srcSock Error!"<<endl;
return 0;
}
memset( &serverSockAddr, 0, sizeof(serverSockAddr) );
memset( &sa, 0, sizeof(sa) );
sa.sin_family = AF_INET;
sa.sin_port = htons((u_short)SRVPORT);
sa.sin_addr.s_addr = htonl( INADDR_ANY );
if( bind( aSock, (sockaddr*) &sa, sizeof(sa) ) < 0 )
{
cout<<"Bind Error!"<<endl;
return 0;
}
if( listen(aSock, CONNECT_NUM) < 0 )
{
cout<<"Listen Error!"<<endl;
return 0;
}
cout<<"Server has been opened:"<<endl;
while( true )
{
cnt = -1;
nSrvAddr = sizeof( sockaddr_in );
srcSock = accept( aSock, (sockaddr*)&serverSockAddr, (socklen_t *) &nSrvAddr );
if( srcSock < 0 )
{
cout<<" Server accept Error@"<<endl;
cout<<"srcSock is: "<<srcSock<<endl;
cout<<" Error No is : "<<errno<<endl;
perror("server:");
return 0;
}
char szRevMeg[ MAX_NUM ] = { 0 };
char szSdMeg[ MAX_NUM ] = { "Hello World!" };
cout<<"Begin to read: "<<endl;
cnt = read( srcSock, szRevMeg, MAX_NUM );
if( cnt < 0 )
{
cout<<"Read Error!"<<endl;
return 0; //Just to test
}
cout<<" cnt is: "<<cnt<<endl;
cout<<"Complete Read:"<<endl;
cout<<szRevMeg<<endl;
cnt = write( srcSock, szSdMeg, strlen(szSdMeg)+1 );
if( cnt < 0 )
{
cout<<"Write Error!"<<endl;
}
cout<<"Write Completed!"<<endl;
close( srcSock );
cout<<endl;
}
close( aSock );
return 0;
}
TCP Client 端:
#include <iostream>
#include <cstring>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#define PORT 10005
#define SRVIP "127.0.0.1" // "222.26.209.141"
#define RCVNUM 1024
using namespace std;
int main()
{
int clientSock, nRecvBytes = -1;
sockaddr_in sa;
char Buffer[RCVNUM] = { 0 };
clientSock = socket( AF_INET, SOCK_STREAM, 0 );
if( clientSock < 0 )
{
cout<<"Client Socket create error!"<<endl;
return 0;
}
memset( &sa, 0, sizeof(sa) );
sa.sin_family = AF_INET;
sa.sin_port = htons( PORT );
sa.sin_addr.s_addr = inet_addr( SRVIP );
if( connect( clientSock, (sockaddr*)&sa, sizeof(sockaddr) ) < 0 )
{
cout<<"Connect Error!"<<endl;
return 0;
}
cout<<" Client has been opened:"<<endl;
strcpy( Buffer, "Here client said: hello" );
cout<<" Begin to write: "<<endl;
write( clientSock, Buffer, strlen(Buffer)+1 );
cout<<" Write completed"<<endl;
memset( Buffer, 0, sizeof(Buffer) );
if( nRecvBytes = read( clientSock,Buffer, RCVNUM ) < 0 )
{
cout<<"Read Message Error!"<<endl;
return 0;
}
cout<<"Server says: "<<Buffer<<endl;
close( clientSock );
cout<<"End of file"<<endl;
return 0;
}
linux一键安装web环境全攻略 在linux系统中怎么一键安装web环境方法
Linux网络基本网络配置方法介绍 如何配置Linux系统的网络方法
Linux下DNS服务器搭建详解 Linux下搭建DNS服务器和配置文件
对Linux进行详细的性能监控的方法 Linux 系统性能监控命令详解
linux系统root密码忘了怎么办 linux忘记root密码后找回密码的方法
Linux基本命令有哪些 Linux系统常用操作命令有哪些
Linux必学的网络操作命令 linux网络操作相关命令汇总
linux系统从入侵到提权的详细过程 linux入侵提权服务器方法技巧
linux系统怎么用命令切换用户登录 Linux切换用户的命令是什么
在linux中添加普通新用户登录 如何在Linux中添加一个新的用户
2012-07-10
CentOS 6.3安装(详细图解教程)
Linux怎么查看网卡驱动?Linux下查看网卡的驱动程序
centos修改主机名命令
Ubuntu或UbuntuKyKin14.04Unity桌面风格与Gnome桌面风格的切换
FEDORA 17中设置TIGERVNC远程访问
StartOS 5.0相关介绍,新型的Linux系统!
解决vSphere Client登录linux版vCenter失败
LINUX最新提权 Exploits Linux Kernel <= 2.6.37
nginx在网站中的7层转发功能