[pisa-src] r1376 - trunk/include/util.h

  • From: Thomas Jansen <mithi@xxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Wed, 28 Oct 2009 13:32:08 +0100

Author: tjansen
Date: Wed Oct 28 13:32:08 2009
New Revision: 1376

Log:
Removed unused structs and typedefs.

Modified:
   trunk/include/util.h

Modified: trunk/include/util.h
==============================================================================
--- trunk/include/util.h        Wed Oct 28 13:28:48 2009        (r1375)
+++ trunk/include/util.h        Wed Oct 28 13:32:08 2009        (r1376)
@@ -90,25 +90,6 @@
        ( IN6_IS_ADDR_V4MAPPED(in6_addr_a) && \
        ((in6_addr_a)->s6_addr32[3] == (in_addr_b)->s_addr))
 
-struct pisa_listitem {
-  char data[256];
-  struct pisa_listitem *next;
-};
-
-typedef struct pisa_listitem Pisa_Listitem;
-
-struct pisa_list {
-  Pisa_Listitem *head;
-};
-
-typedef struct pisa_list Pisa_List;
-
-struct pisa_hosts_file_line {
-  char *hostname, *alias;
-  struct in6_addr id;
-  int lineno;
-};
-
 /**
  * wrapper functions for memory allocation.
  * for malloc(), realloc() and free().
@@ -138,8 +119,6 @@
 int pisa_create_lock_file(char *filename, int killold);
 int pisa_remove_lock_file(char *filename);
 
-struct pisa_common_addr;
-
 int pisa_read_nameserver(struct in_addr *dnsaddr, const char *resolvconf);
 
 int pisa_check_and_create_dir(char *dirname, mode_t mode);

Other related posts:

  • » [pisa-src] r1376 - trunk/include/util.h - Thomas Jansen