Example #1
0
void
pe_metadata(void)
{
    config_metadata("Policy Engine", "1.0",
                    "Policy Engine Options",
                    "This is a fake resource that details the options that can be configured for the Policy Engine.",
                    pe_opts, DIMOF(pe_opts));
}
			//services
			//----------------------------------------------------------------
			void init()
			{
				//configure metadata
				config_metadata();

				//set debug mode , all contexts
				if  ( config_debug() )
				{
				    //set callbacks
				    config_callbacks();
				}

				run( true );

			}