2.2.1.1.15 OSPF_FILTER_ACTION

The OSPF_FILTER_ACTION enumeration is used to determine whether or not a route is added to the OSPF database.

 typedef enum _OSPF_FILTER_ACTION
 {
   ACTION_DROP = 0,
   ACTION_ACCEPT = 1
 } OSPF_FILTER_ACTION,
  *POSPF_FILTER_ACTION;

ACTION_DROP: The route is not added to the OSPF database.

ACTION_ACCEPT: The route is added to the OSPF database.