Table of Contents
List of Examples
db_url parameteruri_table parameteruri_user_column parameteruri_domain_column parameteruri_uriuser_column parametersubscriber_table parametersubscriber_user_column parametersubscriber_domain_column parametercheck_to usagecheck_from usagedoes_uri_exist usageTable of Contents
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")
...
Table containing list of allowed URIs for each user.
Default value is "uri".
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")
...
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")
...
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")
...
Name of the subscriber table.
Default value is "subscriber".
Example 1.6. Set subscriber_table parameter
...
modparam("module", "subscriber_table", "subscriber")
...
Check To username against URI table or digest credentials.
Check From username against URI table or digest credentials.