⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 domain_user.sgml

📁 性能优秀的SIP Proxy
💻 SGML
字号:
<!-- Domain Module User's Guide --><chapter>	<chapterinfo>	<revhistory>		<revision>		<revnumber>$Revision: 1.7 $</revnumber>		<date>$Date: 2006/01/22 08:30:26 $</date>		</revision>	</revhistory>	</chapterinfo>	<title>User's Guide</title>		<section>	<title>Overview</title>	<para>		Domain module implements checks that based on domain table determine 		if a host part of an <acronym>URI</acronym> is <quote>local</quote> or 		not.  A <quote>local</quote> domain is one that the proxy is responsible 		for.	</para>	<para>		Domain module operates in caching or non-caching mode depending on 		value of module parameter <parameter moreinfo="none">db_mode</parameter>.		In caching mode domain module reads the contents of domain table into 		cache memory when the module is loaded.  After that domain table is 		re-read only when module is given domain_reload fifo command.  Any		changes in domain table must thus be followed by 		<quote>domain_reload</quote> command in order to reflect them in 		module behavior. In non-caching mode domain module always queries domain		table in the database.	</para>	<para>		Caching is implemented using a hash table. The size of the hash table 		is given by HASH_SIZE constant defined in domain_mod.h. 		Its <quote>factory default</quote> value is 128.	</para>	</section>	<section>	<title>Dependencies</title>	<para>		The module depends on the following modules (in the other words the 		listed modules must be loaded before this module):		<itemizedlist>		<listitem>			<para><emphasis>database</emphasis> -- Any database module</para>		</listitem>		</itemizedlist>	</para>	</section>	<section>	<title>Exported Parameters</title>	<section>		<title><varname>db_url</varname> (string)</title>		<para>		This is <acronym>URL</acronym> of the database to be used.		</para>		<para>		Default value is 			<quote>mysql://openserro:openserro@localhost/openser</quote>		</para>		<example>		<title>Setting db_url parameter</title>		<programlisting format="linespecific">modparam("domain", "db_url", "mysql://ser:pass@db_host/ser")</programlisting>		</example>	</section>	<section>		<title><varname>db_mode</varname> (integer)</title>		<para>		Database mode: 0 means non-caching, 1 means caching.		</para>		<para>		Default value is 0 (non-caching).		</para>		<example>		<title>nonce_expire example</title>		<programlisting format="linespecific">modparam("domain", "db_mode", 1)   # Use caching</programlisting>		</example>	</section>	<section>		<title><varname>domain_table</varname> (string)</title>		<para>		Name of table containing names of local domains that the proxy is 		responsible for. Local users must have in their sip uri a host part 		that is equal to one of these domains.		</para>		<para>		Default value is <quote>domain</quote>.		</para>		<example>		<title>Setting domain_table parameter</title>		<programlisting format="linespecific">modparam("domain", "domain_table", "new_name")</programlisting>		</example>	</section>	<section>		<title><varname>domain_col</varname> (string)</title>		<para>		Name of column containing domains in domain table.		</para>		<para>		Default value is <quote>domain</quote>.		</para>		<example>		<title>Setting domain_col parameter</title>		<programlisting format="linespecific">modparam("domain", "domain_col", "domain_name")</programlisting>		</example>	</section>		</section>	<section>	<title>Exported Functions</title>	<section>		<title><function moreinfo="none">is_from_local()</function></title>		<para>		Checks based on domain table if host part of From header uri is		one of the local domains that the proxy is responsible for		</para>		<para>		This function can be used from REQUEST_ROUTE.		</para>		<example>		<title>is_from_local usage</title>		<programlisting format="linespecific">...if (is_from_local()) {	...};...		</programlisting>		</example>	</section>	<section>		<title><function moreinfo="none">is_uri_host_local()</function></title>		<para>		If called from route or failure route block, checks		based on domain table if host part of Request-URI is one		of the local domains that the proxy is responsible for.		If called from branch route, the test is made on host		part of URI of first branch, which thus must have been		appended to the transaction before is_uri_host_local()		is called.		</para>		<para>		This function can be used from REQUEST_ROUTE, FAILURE_ROUTE,		BRANCH_ROUTE.		</para>		<example>		<title>is_uri_host_local usage</title>		<programlisting format="linespecific">...if (is_uri_host_local()) {	...};...		</programlisting>		</example>	</section>	<section>		<title><function moreinfo="none">is_domain_local(variable)</function></title>		<para>		This function checks if the domain contained in the		variable is local. The variable can be an avp_name, an		avp_alias or a special keyword pointing to certain SIP		headers from where the domain should be taken.		</para>		<para>The input variable can be one of the following:</para>		<itemizedlist>		<listitem><para>			<emphasis>$ruri</emphasis> - take the domain part of the request URI		</para></listitem>		<listitem><para>			<emphasis>$from</emphasis> - take the domain part of the From header		</para></listitem>		<listitem><para>			<emphasis>avp</emphasis> - the domain is given by the value of the avp			which is either an avp_name or an avp_alias		</para></listitem>		</itemizedlist>		<para>		This function is a generalized form of the is_from_local()		and is_uri_host_local() functions, being able to completely		replace them and also extends them by allowing the domain to		be taken from an avp. The following equivalences exist:		</para>		<itemizedlist>		<listitem><para>			is_domain_local("$ruri") is same as is_uri_host_local()		</para></listitem>		<listitem><para>			is_domain_local("$from") is same as is_from_local()		</para></listitem>		</itemizedlist>		<para>		This function can be used from REQUEST_ROUTE, FAILURE_ROUTE,		BRANCH_ROUTE.		</para>		<example>		<title>is_domain_local usage</title>		<programlisting format="linespecific">...if (is_domain_local("$ruri")) {	...};if (is_domain_local("$from")) {	...};if (is_domain_local("$some_avp_alias")) {	...};if (is_domain_local("i:850")) {	...};if (is_domain_local("s:some_avp")) {	...};...		</programlisting>		</example>	</section>	</section>	<section>	<title><acronym>FIFO</acronym> Commands</title>	<section>		<title><function moreinfo="none">domain_reload</function></title>		<para>		Causes domain module to re-read the contents of domain table		into cache memory.		</para>	</section>	<section>		<title><function moreinfo="none">domain_dump</function></title>		<para>		Causes domain module to dump hash indexes and domain names in		its cache memory.		</para>	</section>	</section>	<section>	<title>Known Limitations</title>	<para>		There is an unlikely race condition on domain list update.  If a 		process uses a table, which is reloaded at the same time twice 		through <acronym>FIFO</acronym>, the second reload will delete the 		original table still in use by the process.	</para>	</section></chapter><!-- Keep this element at the end of the fileLocal Variables:sgml-parent-document: ("domain.sgml" "Book" "chapter")End:-->

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -