mirror of https://github.com/sipwise/kamailio.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.9 KiB
67 lines
1.9 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE table PUBLIC "-//kamailio.org//DTD DBSchema V1.1//EN"
|
|
"http://kamailio.org/pub/kamailio/dbschema/dtd/1.1/dbschema.dtd" [
|
|
|
|
<!ENTITY % entities SYSTEM "entities.xml">
|
|
%entities;
|
|
|
|
]>
|
|
|
|
<table id="trusted" xmlns:db="http://docbook.org/ns/docbook">
|
|
<name>trusted</name>
|
|
<version>5</version>
|
|
<type db="mysql">&MYSQL_TABLE_TYPE;</type>
|
|
<description>
|
|
<db:para>This table is used by the permissions module to determine if a call has the appropriate permission to be established. More information about the permissions module can be found at: &KAMAILIO_MOD_DOC;permissions.html
|
|
</db:para>
|
|
</description>
|
|
|
|
<column id="id">
|
|
<name>id</name>
|
|
<type>unsigned int</type>
|
|
<size>&table_id_len;</size>
|
|
<autoincrement/>
|
|
<primary/>
|
|
<type db="dbtext">int,auto</type>
|
|
<description>unique ID</description>
|
|
</column>
|
|
|
|
<column id="src_ip">
|
|
<name>src_ip</name>
|
|
<type>string</type>
|
|
<size>&ip_add_len;</size>
|
|
<description>Source address is equal to source address of request</description>
|
|
<natural/>
|
|
</column>
|
|
|
|
<column>
|
|
<name>proto</name>
|
|
<type>string</type>
|
|
<size>4</size>
|
|
<description>Transport protocol is either "any" or equal to transport protocol of request. Possible values that can be stored are "any", "udp", "tcp", "tls", and "sctp".</description>
|
|
</column>
|
|
|
|
<column>
|
|
<name>from_pattern</name>
|
|
<type>string</type>
|
|
<size>&id_len;</size>
|
|
<default><null/></default>
|
|
<null/>
|
|
<description>Regular expression matches From URI of request.</description>
|
|
</column>
|
|
|
|
<column>
|
|
<name>tag</name>
|
|
<type>string</type>
|
|
<size>64</size>
|
|
<null/>
|
|
<description>Tag</description>
|
|
</column>
|
|
|
|
<index>
|
|
<name>peer_idx</name>
|
|
<colref linkend="src_ip"/>
|
|
</index>
|
|
|
|
</table>
|