security: Add 'type any' for trust-anchor in ValidatorConfig

Refs: #1482

Change-Id: Ida78f392799f0f2e578e1bdc6735bbfc68e1617e
diff --git a/src/security/validator-config.hpp b/src/security/validator-config.hpp
index e22c446..00d7c66 100644
--- a/src/security/validator-config.hpp
+++ b/src/security/validator-config.hpp
@@ -120,6 +120,13 @@
   typedef std::vector<shared_ptr<DataRule> >     DataRuleList;
   typedef std::map<Name, shared_ptr<IdentityCertificate> > AnchorList;
 
+  /**
+   * @brief gives whether validation should be preformed
+   *
+   * If false, no validation occurs, and any packet is considered validated immediately.
+   */
+  bool m_shouldValidate;
+
   int m_stepLimit;
   shared_ptr<CertificateCache> m_certificateCache;