当前位置: 技术问答>linux和unix
请帮我看看这道程序什么地方错了
来源: 互联网 发布时间:2016-09-29
本文导语: 这是书上的一道例子,是一个客户端程序, 编译没问题,就是运行的时候出现段错误, 但我改了很久,它还是段错误 请大家帮我看一下吧 这是书上的源代码(为了不误导大家,我就不把我改的代码帖出来了) /* ti...
这是书上的一道例子,是一个客户端程序,
编译没问题,就是运行的时候出现段错误,
但我改了很久,它还是段错误
请大家帮我看一下吧
这是书上的源代码(为了不误导大家,我就不把我改的代码帖出来了)
编译没问题,就是运行的时候出现段错误,
但我改了很久,它还是段错误
请大家帮我看一下吧
这是书上的源代码(为了不误导大家,我就不把我改的代码帖出来了)
/* 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 );
}
|
你的代码是可以运行的哦!
但是参数不够 就会报段错误
但是你需要注意的是 你使用的gethostbyname 所以第一个参数需要是hostname 不能是ip 第二个参数是端口
看我的运行过程
[root@CentOS tmp]# gcc -o timeserv timeserv.c
[root@CentOS tmp]# gcc -o timeclnt timeclnt.c
[root@CentOS tmp]# ./timeclnt localhost 13000
Wow! got a call!
The time here is ..Sun Sep 19 15:14:59 2010
[root@CentOS tmp]# ./timeclnt CentOS 13000
Wow! got a call!
The time here is ..Sun Sep 19 15:15:08 2010
但是参数不够 就会报段错误
但是你需要注意的是 你使用的gethostbyname 所以第一个参数需要是hostname 不能是ip 第二个参数是端口
看我的运行过程
[root@CentOS tmp]# gcc -o timeserv timeserv.c
[root@CentOS tmp]# gcc -o timeclnt timeclnt.c
[root@CentOS tmp]# ./timeclnt localhost 13000
Wow! got a call!
The time here is ..Sun Sep 19 15:14:59 2010
[root@CentOS tmp]# ./timeclnt CentOS 13000
Wow! got a call!
The time here is ..Sun Sep 19 15:15:08 2010
|
bcopy(hp->h_addr, (struct sockaddr *)&servadd.sin_addr, hp->h_length);
==>
bcopy(hp->h_addr, &servadd.sin_addr, hp->h_length);
==>
bcopy(hp->h_addr, &servadd.sin_addr, hp->h_length);
|
你怎么运行的?程序有什么输出信息吗?
|
不知道是不是socket和gethostbyname条用顺序的问题
|
楼上正解,bcopy 的api说明如下:
原型:extern void bcopy(const void *src, void *dest, int n);
用法:#include
功能:将字符串src的前n个字节复制到dest中
说明:bcopy不检查字符串中的空字节NULL,函数没有返回值。
估计bcopy的实现里面,用dest这个指针的++操作。强制转换为struct sockaddr这种类型,每次就加这个结构体大小个字节,导致越界。