Updated API for uiplib and resolv to use uip_ipaddr_t instead of uint16_t for compability with IPv6

This commit is contained in:
nifi 2010-05-31 15:22:08 +00:00
parent c13bb8666b
commit b54c6e673b
22 changed files with 194 additions and 106 deletions

View file

@ -34,7 +34,7 @@
*
* This file is part of the uIP TCP/IP stack.
*
* $Id: resolv.h,v 1.3 2006/09/18 23:30:40 oliverschmidt Exp $
* $Id: resolv.h,v 1.4 2010/05/31 15:22:08 nifi Exp $
*
*/
#ifndef __RESOLV_H__
@ -47,15 +47,11 @@
*/
CCIF extern process_event_t resolv_event_found;
/* Callbacks. */
void resolv_found(char *name, u16_t *ipaddr);
/* Functions. */
CCIF void resolv_conf(const uip_ipaddr_t *dnsserver);
CCIF uip_ipaddr_t *resolv_getserver(void);
void resolv_init(char *arg);
CCIF u16_t *resolv_lookup(char *name);
CCIF void resolv_query(char *name);
CCIF uip_ipaddr_t *resolv_lookup(const char *name);
CCIF void resolv_query(const char *name);
PROCESS_NAME(resolv_process);