1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
|
UID Uri_db Module
Jan Janak
FhG FOKUS
Copyright 2003 FhG FOKUS
_________________________________________________________________
Table of Contents
1. Admin Guide
1. Overview
2. Dependencies
3. Parameters
3.1. db_url (string)
3.2. uri_table (string)
3.3. uri_user_column (string)
3.4. uri_domain_column (string)
3.5. uri_uriuser_column (string)
3.6. subscriber_table (string)
3.7. subscriber_user_column (string)
3.8. subscriber_domain_column (string)
4. Functions
4.1. check_to()
4.2. check_from()
4.3. does_uri_exist()
List of Examples
1.1. Set db_url parameter
1.2. Set uri_table parameter
1.3. Set uri_user_column parameter
1.4. Set uri_domain_column parameter
1.5. Set uri_uriuser_column parameter
1.6. Set subscriber_table parameter
1.7. Set subscriber_user_column parameter
1.8. Set subscriber_domain_column parameter
1.9. check_to usage
1.10. check_from usage
1.11. does_uri_exist usage
Chapter 1. Admin Guide
Table of Contents
1. Overview
2. Dependencies
3. Parameters
3.1. db_url (string)
3.2. uri_table (string)
3.3. uri_user_column (string)
3.4. uri_domain_column (string)
3.5. uri_uriuser_column (string)
3.6. subscriber_table (string)
3.7. subscriber_user_column (string)
3.8. subscriber_domain_column (string)
4. Functions
4.1. check_to()
4.2. check_from()
4.3. does_uri_exist()
1. Overview
Various checks related to SIP URI.
2. Dependencies
The following modules must be loaded before this module:
* A SER database module.
3. Parameters
3.1. db_url (string)
3.2. uri_table (string)
3.3. uri_user_column (string)
3.4. uri_domain_column (string)
3.5. uri_uriuser_column (string)
3.6. subscriber_table (string)
3.7. subscriber_user_column (string)
3.8. subscriber_domain_column (string)
3.1. db_url (string)
URL of the database to be used.
Default value is "mysql://serro:47serro11@localhost/ser".
Example 1.1. Set db_url parameter
...
modparam("module", "db_url", "mysql://username:password@localhost/ser")
...
3.2. uri_table (string)
Table containing list of allowed URIs for each user.
Default value is "uri".
Example 1.2. Set uri_table parameter
...
modparam("module", "uri_table", "uri")
...
3.3. uri_user_column (string)
Column holding usernames in the URI table.
Default value is "username".
Example 1.3. Set uri_user_column parameter
...
modparam("module", "uri_user_column", "username")
...
3.4. uri_domain_column (string)
Column holding domain in the URI table.
Default value is "domain".
Example 1.4. Set uri_domain_column parameter
...
modparam("module", "uri_domain_column", "domain")
...
3.5. uri_uriuser_column (string)
Column holding URI username in the URI table.
Default value is "uri_user".
Example 1.5. Set uri_uriuser_column parameter
...
modparam("module", "uri_uriuser_column", "uri_user")
...
3.6. subscriber_table (string)
Name of the subscriber table.
Default value is "subscriber".
Example 1.6. Set subscriber_table parameter
...
modparam("module", "subscriber_table", "subscriber")
...
3.7. subscriber_user_column (string)
Column holding username in subscriber table.
Default value is "username".
Example 1.7. Set subscriber_user_column parameter
...
modparam("module", "subscriber_user_column", "username")
...
3.8. subscriber_domain_column (string)
Column holding domains in the subscriber table.
Default value is "domain".
Example 1.8. Set subscriber_domain_column parameter
...
modparam("module", "subscriber_domain_column", "domain")
...
4. Functions
4.1. check_to()
4.2. check_from()
4.3. does_uri_exist()
4.1. check_to()
Check To username against URI table or digest credentials.
Example 1.9. check_to usage
...
if (check_to()) {
...
};
...
4.2. check_from()
Check From username against URI table or digest credentials.
Example 1.10. check_from usage
...
if (check_from()) {
...
};
...
4.3. does_uri_exist()
Check if username in the request URI belongs to an existing user.
Example 1.11. does_uri_exist usage
...
if (does_uri_exist()) {
...
};
...
|