Displaying 1 result from an estimated 1 matches for "sadb_sastate_matur".
Did you mean:
  sadb_sastate_mature
  
2003 Sep 11
2
FAST_IPSEC doesn't seem to honor net.key.prefered_oldsa=0
...c,v 1.191 2001/06/27 10:46:49 sakane Exp $   */
  /*
***************
*** 133,138 ****
--- 133,139 ----
  #endif
  static LIST_HEAD(_spacqtree, secspacq) spacqtree;     /* SP acquiring list */
+ #if 0
  /* search order for SAs */
  static u_int saorder_state_valid[] = {
        SADB_SASTATE_DYING, SADB_SASTATE_MATURE,
***************
*** 141,146 ****
--- 142,155 ----
         * for outbound processing.  For inbound, This is not important.
         */
  };
+ #endif
+ static const u_int saorder_state_valid_prefer_old[] = {
+         SADB_SASTATE_DYING, SADB_SASTATE_MATURE,
+ };
+ static const u_int saorder_state...