当前位置: 技术问答>linux和unix
linux网络编程的菜鸟问题
来源: 互联网 发布时间:2016-09-29
本文导语: 学习网络编程的时候,是不是一定要用两个系统,一个做服务器,一个做客户端? 我刚学网络编程,书上的程序都是一对的(一个是服务器程序,另一个是客户端程序) 我应该怎么做呢? 我是linux新手,请大家不要...
学习网络编程的时候,是不是一定要用两个系统,一个做服务器,一个做客户端?
我刚学网络编程,书上的程序都是一对的(一个是服务器程序,另一个是客户端程序)
我应该怎么做呢?
我是linux新手,请大家不要见笑。
顺便把书上的例子帖出来吧,方便大家以实例说明,呵呵
我刚学网络编程,书上的程序都是一对的(一个是服务器程序,另一个是客户端程序)
我应该怎么做呢?
我是linux新手,请大家不要见笑。
顺便把书上的例子帖出来吧,方便大家以实例说明,呵呵
/* timeclnt.c - a client for timeserv.c
* usage: timeclnt hostname portnumber
*/
#include
#include
#include
#include
#include
#define oops(msg) { perror(msg); exit(1); }
main(int ac, char *av[])
{
struct sockaddr_in servadd; /* the number to call */
struct hostent *hp; /* used to get number */
int sock_id, sock_fd; /* the socket and fd */
char message[BUFSIZ]; /* to receive message */
int messlen; /* for message length */
/*
* Step 1: Get a socket
*/
sock_id = socket( AF_INET, SOCK_STREAM, 0 ); /* get a line */
if ( sock_id == -1 )
oops( "socket" ); /* or fail */
/*
* Step 2: connect to server
* need to build address (host,port) of server first
*/
bzero( &servadd, sizeof( servadd ) ); /* zero the address */
hp = gethostbyname( av[1] ); /* lookup host's ip # */
if (hp == NULL)
oops(av[1]); /* or die */
bcopy(hp->h_addr, (struct sockaddr *)&servadd.sin_addr, hp->h_length);
servadd.sin_port = htons(atoi(av[2])); /* fill in port number */
servadd.sin_family = AF_INET ; /* fill in socket type */
/* now dial */
if ( connect(sock_id,(struct sockaddr *)&servadd, sizeof(servadd)) !=0)
oops( "connect" );
/*
* Step 3: transfer data from server, then hangup
*/
messlen = read(sock_id, message, BUFSIZ); /* read stuff */
if ( messlen == - 1 )
oops("read") ;
if ( write( 1, message, messlen ) != messlen ) /* and write to */
oops( "write" ); /* stdout */
close( sock_id );
}
/* timeserv.c - a socket-based time of day server
*/
#include
#include
#include
#include
#include
#include
#include
#include
#define PORTNUM 13000 /* our time service phone number */
#define HOSTLEN 256
#define oops(msg) { perror(msg) ; exit(1) ; }
int main(int ac, char *av[])
{
struct sockaddr_in saddr; /* build our address here */
struct hostent *hp; /* this is part of our */
char hostname[HOSTLEN]; /* address */
int sock_id,sock_fd; /* line id, file desc */
FILE *sock_fp; /* use socket as stream */
char *ctime(); /* convert secs to string */
time_t thetime; /* the time we report */
/*
* Step 1: ask kernel for a socket
*/
sock_id = socket( PF_INET, SOCK_STREAM, 0 ); /* get a socket */
if ( sock_id == -1 )
oops( "socket" );
/*
* Step 2: bind address to socket. Address is host,port
*/
bzero( (void *)&saddr, sizeof(saddr) ); /* clear out struct */
gethostname( hostname, HOSTLEN ); /* where am I ? */
hp = gethostbyname( hostname ); /* get info about host */
/* fill in host part */
bcopy( (void *)hp->h_addr, (void *)&saddr.sin_addr, hp->h_length);
saddr.sin_port = htons(PORTNUM); /* fill in socket port */
saddr.sin_family = AF_INET ; /* fill in addr family */
if ( bind(sock_id, (struct sockaddr *)&saddr, sizeof(saddr)) != 0 )
oops( "bind" );
/*
* Step 3: allow incoming calls with Qsize=1 on socket
*/
if ( listen(sock_id, 1) != 0 )
oops( "listen" );
/*
* main loop: accept(), write(), close()
*/
while ( 1 ){
sock_fd = accept(sock_id, NULL, NULL); /* wait for call */
printf("Wow! got a call!n");
if ( sock_fd == -1 )
oops( "accept" ); /* error getting calls */
sock_fp = fdopen(sock_fd,"w"); /* we'll write to the */
if ( sock_fp == NULL ) /* socket as a stream */
oops( "fdopen" ); /* unless we can't */
thetime = time(NULL); /* get time */
/* and convert to strng */
fprintf( sock_fp, "The time here is .." );
fprintf( sock_fp, "%s", ctime(&thetime) );
fclose( sock_fp ); /* release connection */
}
}
|
在一个系统里就可以测试呀
先启动服务器端的程序 让他在后台运行 ./server &
然后用客户端测试呀./client 127.0.0.1
或者打开2个终端 一个里面启动服务器端server 一个用来客户端测试
先启动服务器端的程序 让他在后台运行 ./server &
然后用客户端测试呀./client 127.0.0.1
或者打开2个终端 一个里面启动服务器端server 一个用来客户端测试
|
恩,本地还有loop循环呢
|
就算用本机的实际IP地址也可以。方法参照主席说的。
|
嗯,客户机、服务器只是两个角色,不一定是物理上的实体..
|
是这样子的
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。