Uri Module

Jan Janak

FhG FOKUS
Revision History
Revision $Revision: 1.3 $$Date: 2005/08/24 22:26:20 $

Overview

Various checks related to SIP URI.

Functions

Revision History
Revision $Revision: 1.3 $$Date: 2006/12/11 13:11:02 $

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")) {
    ...
};
...
	    

has_totag()

Check if To header field uri contains tag parameter.

Example 2. has_totag usage

...
if (has_totag()) {
    ...
};
...