Addons updated to new doc format
[io.git] / addons / Socket / source / LocalNameServers.h
blob0a2d609c54e5ed18cc85a8433e03d6cd9436b280
2 //metadoc LocalNameServers copyright Steve Dekorte 2002
3 //metadoc LocalNameServers license BSD revised
5 #ifndef LOCALNAMESERVERS_DEFINED
6 #define LOCALNAMESERVERS_DEFINED 1
8 #include "List.h"
10 typedef struct LocalNameServers
12 List *ips;
13 } LocalNameServers;
15 LocalNameServers *LocalNameServers_new(void);
16 void LocalNameServers_free(LocalNameServers *self);
18 void LocalNameServers_addIPAddress_(LocalNameServers *self, const char *s);
20 /* returns List of char * strings contianing IPs */
21 List *LocalNameServers_ips(LocalNameServers *self);
23 #endif