[hipl-commit] [trunk] Rev 4311: Remove disabled code from firewall/user_ipsec_sadb.c.

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Fri, 16 Apr 2010 02:32:04 +0300

Committer: Diego Biurrun <diego@xxxxxxxxxx>
Date: 16/04/2010 at 02:32:04
Revision: 4311
Revision-id: diego@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: trunk

Log:
  Remove disabled code from firewall/user_ipsec_sadb.c.

Modified:
  M  firewall/user_ipsec_sadb.c

=== modified file 'firewall/user_ipsec_sadb.c'
--- firewall/user_ipsec_sadb.c  2010-04-15 16:57:50 +0000
+++ firewall/user_ipsec_sadb.c  2010-04-15 23:31:51 +0000
@@ -318,52 +318,6 @@
     return err;
 }
 
-#if 0
-/**
- * prints a single link entry in the linkdb
- *
- * @param entry  link entry to be printed
- */
-static void hip_link_entry_print(hip_link_entry_t *entry)
-{
-    if (entry) {
-        HIP_DEBUG_HIT("dst_addr", &entry->dst_addr);
-        HIP_DEBUG("spi: 0x%lx\n", entry->spi);
-        HIP_DEBUG("> sa entry:\n");
-    } else {
-        HIP_DEBUG("link entry is NULL\n");
-    }
-}
-
-/**
- * prints the complete linkdb
- */
-void hip_linkdb_print(void)
-{
-    int i                   = 0;
-    hip_list_t *item        = NULL;
-    hip_list_t *tmp         = NULL;
-    hip_link_entry_t *entry = NULL;
-
-    HIP_DEBUG("printing linkdb...\n");
-
-    // iterating over all elements
-    list_for_each_safe(item, tmp, linkdb, i)
-    {
-        if (!(entry = (hip_link_entry_t *) list_entry(item))) {
-            HIP_ERROR("failed to get list entry\n");
-            break;
-        }
-        HIP_DEBUG("link entry %i:\n", i + 1);
-        hip_link_entry_print(entry);
-    }
-
-    if (i == 0) {
-        HIP_DEBUG("linkdb contains no items\n");
-    }
-}
-#endif /* 0 */
-
 /**
  * sets the values of a SA entry
  *
@@ -974,8 +928,6 @@
     HIP_DEBUG_HIT("inner_dst_addr", &search_entry.inner_dst_addr);
     HIP_DEBUG("mode: %i\n", search_entry.mode);
 
-    //hip_sadb_print();
-
     // find entry in sadb db
     HIP_IFEL(!(stored_entry = (hip_sa_entry_t *) hip_ht_find(sadb, 
&search_entry)), -1,
              "failed to retrieve sa entry\n");

Other related posts:

  • » [hipl-commit] [trunk] Rev 4311: Remove disabled code from firewall/user_ipsec_sadb.c. - Diego Biurrun