- 论坛徽章:
- 0
|
//源程序如下
#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
请教大虾们,如何解决!
 |
|