免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1096 | 回复: 3
打印 上一主题 下一主题

C程序编译问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-08-30 11:39 |只看该作者 |倒序浏览
//源程序如下
#include <stdio.h>;
#include <stdlib.h>;
#include <time.h>;
#include <signal.h>;
#include <memory.h>;
#include <time.h>;
#include <sys/socket.h>;
#include <netinet/in.h>;
#include <arpa/inet.h>;
#include <netdb.h>;
#include <setjmp.h>;
#include <sys/types.h>;
int tcp_linger( int socket );

int  main(){
        int s, domain, type, protocol;
        struct sockaddr_in remote;
        struct hostent *hp;
        struct servent *sp;
        char servicename[60];
        memcpy(servicename,"pop3",4);
        domain=2;
        type=1;
        protocol=0;
        printf("good";
       
        if ( (sp = getservbyname(servicename, "tcp") == NULL ) {
         printf("sp error";
         return(-1);
        }
        printf("sp[%d]",sp->;s_port);

        if ( (hp = gethostbyname("scosysv.UUCP.com") == NULL ) {
        printf("hp error";
        return(-1);
        }
       
        remote.sin_family = AF_INET;
            bcopy(hp->;h_addr, &remote.sin_addr, hp->;h_length);
        remote.sin_port = sp->;s_port;
        printf("hp[%d]",hp->;h_addr);       
        if ( (s=socket ( domain ,type ,protocol ) < 0 )) {
                printf("socket error\n";
                return(-1);
        }

        if ( connect(s, ( struct sockaddr * )&remote, sizeof(remote)) < 0 ) {
        alarm( 0 );
        return(-1);
        }

        alarm( 0 );
           if(tcp_linger( s )<0)
        {
                printf("tcplinger error";
                return(-1);
        }
        printf("ok";
        return(s);
}
       
int tcp_linger( int socket )
{
    struct linger tcp_linger;
    tcp_linger.l_onoff = 1;
    tcp_linger.l_linger =0;
    if ( setsockopt( socket, SOL_SOCKET, SO_LINGER, ( char * ) & tcp_linger, sizeof( struct linger * ) ) < 0 ) {
        return( -1 );
    }
    return( 0 );
}
//使用cc -otest test.c test.o编译出现如下问题:
undefined                       first referenced
symbol                             in file
getservbyname                       test.o
gethostbyname                       test.o
socket                              test.o
connect                             test.o
setsockopt                          test.o
i386ld fatal: Symbol referencing errors. No output written to test

请教大虾们,如何解决!

论坛徽章:
0
2 [报告]
发表于 2005-08-30 11:42 |只看该作者

C程序编译问题

cc -otest test.c test.o是什么意思

cc test.c -o test
这样就可以了吧

论坛徽章:
0
3 [报告]
发表于 2005-08-30 12:08 |只看该作者

C程序编译问题

一样的效果,还是会出现那个ERROR, 这是什么原因引起的呢?

论坛徽章:
0
4 [报告]
发表于 2005-08-30 12:28 |只看该作者

C程序编译问题

既然用到了socket函数,你的socket库链接在哪里?
添加库连接的选项.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP