]> sjero.net Git - wget/blobdiff - src/host.h
[svn] A lot of host name changes.
[wget] / src / host.h
index 090ef1688951d4a16e14f61c71a9b1ca18ed29b7..c3cc1e52951fd6a5a4899bf989695f686047e91d 100644 (file)
@@ -1,5 +1,5 @@
 /* Declarations for host.c
-   Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+   Copyright (C) 1995, 1996, 1997, 2001 Free Software Foundation, Inc.
 
 This file is part of GNU Wget.
 
@@ -21,21 +21,26 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #define HOST_H
 
 struct url;
+struct address_list;
 
 /* Function declarations */
+struct address_list *lookup_host PARAMS ((const char *, int));
+char *herrmsg PARAMS ((int));
 
-struct hostent *ngethostbyname PARAMS ((const char *));
-int store_hostaddress PARAMS ((unsigned char *, const char *));
+int address_list_count PARAMS ((struct address_list *));
+void address_list_copy_one PARAMS ((struct address_list *, int,
+                                   unsigned char *));
+void address_list_release PARAMS ((struct address_list *));
+int address_list_match_all PARAMS ((struct address_list *,
+                                   struct address_list *));
 
-void clean_hosts PARAMS ((void));
+/* This was originally going to be a macro, but then every caller
+   would have to #include the netinet stuff.  */
+char *pretty_print_address PARAMS ((const unsigned char *));
 
-char *realhost PARAMS ((const char *));
-int same_host PARAMS ((const char *, const char *));
 int accept_domain PARAMS ((struct url *));
 int sufmatch PARAMS ((const char **, const char *));
 
-char *ftp_getaddress PARAMS ((void));
-
-char *herrmsg PARAMS ((int));
+void host_cleanup PARAMS ((void));
 
 #endif /* HOST_H */