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.
kamailio/modules_s/uri/README

46 lines
710 B

1. Uri Module
Jan Janak
FhG FOKUS
Copyright © 2003 FhG FOKUS
__________________________________________________________________
1.1. Overview
1.2. Functions
1.2.1. is_user(username)
1.2.2. has_totag()
1.1. Overview
Various checks related to SIP URI.
1.2. Functions
1.2.1. is_user(username)
Check if the username in credentials matches the given username.
Meaning of the parameters is as follows:
* username - Username string or AVP.
Example 1. is_user usage
...
if (is_user("jan")) {
...
};
...
1.2.2. has_totag()
Check if To header field uri contains tag parameter.
Example 2. has_totag usage
...
if (has_totag()) {
...
};
...