您的位置: OpenADSP社区论坛 -> uClinux/ucosII/VDK专区 -> 技术讨论区 -> BF533下SOCKET问题
本帖共有826个阅读者
发表帖子 发表投票 回复主题
BF533下SOCKET问题
kerry(论坛新手)
kerry
头衔:社区公民
帮派:无帮无派
帖数:1
金钱:110
积分:2
注册时间:2013/1/31
楼主信息 | 留言 | Email | 主页 | 编辑 | 管理 | 离线
BF533下SOCKET问题

大家好,我在BF533下运行我写的UDPCLIENT出现如下错误提示:

socket: Function not implemented

我的代码:

#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <netdb.h>
#include <sys/socket.h>
#include <sys/wait.h>
#include <arpa/inet.h>
#include <errno.h>

#define MYPORT 4950 /* the port users will be sending to */

int main(int argc, char *argv[])
{
int sockfd;
struct sockaddr_in their_addr; /* connector's address information */
struct hostent *he;
int numbytes;
if(argc != 3)
{
   fprintf(stderr,"usage: talker hostname message\n");
   exit (1);
}

if((he=gethostbyname(argv[1])) == NULL)
{ /* get the host info */
   herror("get host by name" );
   exit(1);
}

if((sockfd = socket(AF_INET, SOCK_DGRAM, 0)) == -1)
{
   perror("socket");
   exit( 1 );
}

their_addr.sin_family = AF_INET; /* host byte order */
their_addr.sin_port = htons(MYPORT); /* short, network byte order */
their_addr.sin_addr = *((struct in_addr *)he->h_addr);
bzero(&(their_addr.sin_zero), 8); /* zero the rest of the struct */

if((numbytes=sendto(sockfd, argv[2], strlen(argv[2]), 0, (struct sockaddr *)&their_addr, sizeof(struct sockaddr))) == -1)
{
   perror("send to" );
   exit(1);
}

printf("sent %d bytes to %s\n",numbytes,inet_ntoa(their_addr.sin_addr));
close(sockfd);

return 0;
}

编译方法:

bfin-uclinux-gcc -Wl,-elf2flt udpclient.c -o udpclient

请问是什么问题?


这家伙很懒,什么也没有留下!
等级:论坛新手 参考IP地址:*.*.*.*
2013/2/22 18:28:56
Powered by OpenADSP Copyright © 2010 www.Openadsp.com. All rights reserved.153913 Call, 1 Queries, Processed in 0.031250 second(s),