中级会员
 
- 积分
- 473
- 金钱
- 473
- 注册时间
- 2014-2-24
- 在线时间
- 101 小时
|

楼主 |
发表于 2014-2-26 20:44:27
|
显示全部楼层
想做远程域名解析获取IP,添加resolv.c后出现以下错误
..\uIP-1.0\apps\resolv\resolv.c(281): warning: #513-D: a value of type "unsigned char *" cannot be assigned to an entity of type "char *"
..\uIP-1.0\apps\resolv\resolv.c: nameptr = parse_name((char *)uip_appdata + 12) + 4;
..\uIP-1.0\apps\resolv\resolv.c: ^
..\uIP-1.0\apps\resolv\resolv.c(292): warning: #167-D: argument of type "char *" is incompatible with parameter of type "unsigned char *"
..\uIP-1.0\apps\resolv\resolv.c: nameptr = parse_name((char *)nameptr);
..\uIP-1.0\apps\resolv\resolv.c: ^
..\uIP-1.0\apps\resolv\resolv.c(292): warning: #513-D: a value of type "unsigned char *" cannot be assigned to an entity of type "char *"
..\uIP-1.0\apps\resolv\resolv.c: nameptr = parse_name((char *)nameptr);
..\uIP-1.0\apps\resolv\resolv.c: ^
..\uIP-1.0\apps\resolv\resolv.c(240): warning: #550-D: variable "nquestions" was set but never used
..\uIP-1.0\apps\resolv\resolv.c: static u8_t nquestions, nanswers;
..\uIP-1.0\apps\resolv\resolv.c: ^
..\uIP-1.0\apps\resolv\resolv.c(444): error: #167: argument of type "u16_t *" is incompatible with parameter of type "uip_ipaddr_t *"
..\uIP-1.0\apps\resolv\resolv.c: resolv_conn = uip_udp_new(dnsserver, HTONS(53));
..\uIP-1.0\apps\resolv\resolv.c: ^
..\uIP-1.0\apps\resolv\resolv.c: ..\uIP-1.0\apps\resolv\resolv.c: 5 warnings, 1 error
Target not created
应如何解决谢谢, |
|