FSClient.Broker.fs_core_init C# (CSharp) Method

fs_core_init() private method

private fs_core_init ( ) : void
return void
		private void fs_core_init() {
			fs_inited = true;
			String err = "";
			freeswitch.switch_core_set_globals();
			uint flags = UPNPNAT ? (uint)(switch_core_flag_enum_t.SCF_USE_AUTO_NAT) : 0;
			if (! String.IsNullOrWhiteSpace(Environment.CommandLine) && Environment.CommandLine.Contains("--sql"))
				flags |= (uint)switch_core_flag_enum_t.SCF_USE_SQL;
			freeswitch.switch_core_init(flags, switch_bool_t.SWITCH_FALSE, out err);
			search_bind = FreeSWITCH.SwitchXmlSearchBinding.Bind(xml_search, switch_xml_section_enum_t.SWITCH_XML_SECTION_CONFIG);
			event_bind = FreeSWITCH.EventBinding.Bind("FSClient", switch_event_types_t.SWITCH_EVENT_ALL, null, event_handler, true);
			freeswitch.switch_core_init_and_modload(flags, switch_bool_t.SWITCH_FALSE, out err);
			reload_audio_devices(true, true);
		}