Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
pseudovariables:3.0.x [2010/03/31 23:24] – add $null PV 216.58.56.110 | pseudovariables:3.0.x [2012/03/22 12:43] (current) – removed spam 80.250.1.245 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Kamailio 3.0: Pseudo-Variables ====== | ||
+ | **Version: 3.0.x** | ||
+ | |||
+ | < | ||
+ | Authors of initial tutorial: | ||
+ | Elena-Ramona Modroiu | ||
+ | <ramona (at) asipto.com> | ||
+ | Bogdan-Andrei Iancu | ||
+ | <bogdan (at) voice-system.ro> | ||
+ | Daniel-Constantin Mierla | ||
+ | <miconda (at) asipto.com> | ||
+ | |||
+ | Update for 3.0: | ||
+ | Klaus Darilion | ||
+ | </ | ||
+ | |||
+ | ===== Introduction ===== | ||
+ | |||
+ | The term “pseudo-variable” is used for special tokens that can be given as parameters to different script functions and they will be replaced with a value before the execution of the function. | ||
+ | |||
+ | The beginning of a “pseudo-variable” is marked by the character “$”. If you want to have the character “$” just double it “$$”. | ||
+ | |||
+ | There is a set of predefined pseudo-variables, | ||
+ | |||
+ | Pseudo-Variables are implemented by various modules, most of them are provided by [b]pv[/b]. | ||
+ | |||
+ | ===== Pseudo-variables usage ===== | ||
+ | |||
+ | |||
+ | Pseudo-variables can be used with many modules, among them: | ||
+ | |||
+ | * acc | ||
+ | * avpops | ||
+ | * htable | ||
+ | * textops | ||
+ | * uac | ||
+ | * xlog | ||
+ | |||
+ | ===== The list of pseudo-variables===== | ||
+ | |||
+ | |||
+ | Predefined pseudo-variables are listed in alphabetical order. | ||
+ | |||
+ | ==== Pseudo-variable marker ==== | ||
+ | |||
+ | **$$** - represents the character ' | ||
+ | |||
+ | ==== URI in SIP Request' | ||
+ | |||
+ | **$ai** - reference to URI in request' | ||
+ | |||
+ | ==== Auth Digest URI ==== | ||
+ | |||
+ | **$adu** - URI from Authorization or Proxy-Authorization header. This URI is used when calculating the HTTP Digest Response. | ||
+ | |||
+ | ==== Auth realm ==== | ||
+ | |||
+ | **$ar** - realm from Authorization or Proxy-Authorization header | ||
+ | |||
+ | |||
+ | ==== Auth username user ==== | ||
+ | |||
+ | **$au** - user part of username from Authorization or Proxy-Authorization header | ||
+ | |||
+ | |||
+ | ==== Auth username domain ==== | ||
+ | |||
+ | **$ad** - domain part of username from Authorization or Proxy-Authorization header | ||
+ | |||
+ | |||
+ | ==== Auth whole username ==== | ||
+ | |||
+ | **$aU** - whole username from Authorization or Proxy-Authorization header | ||
+ | |||
+ | ==== Acc username ==== | ||
+ | |||
+ | **$Au** - username for accounting purposes. It's a selective pseudo variable (inherited from acc module). It returns $au if exits or From username otherwise. | ||
+ | |||
+ | |||
+ | ==== Branch attributes ==== | ||
+ | |||
+ | **$branch(name)** - reference to attribute ' | ||
+ | |||
+ | This pseudo variable gives you access to the " | ||
+ | |||
+ | The ' | ||
+ | |||
+ | * uri - return uri of the branch | ||
+ | * dst_uri - return destination uri (next hop address) | ||
+ | * q - return the q value of the branch | ||
+ | * path - return the path vector for the branch | ||
+ | * send_socket - return the socket to be used to send the branch | ||
+ | * flags - return the branch flags value | ||
+ | * count - return the number of the branches | ||
+ | |||
+ | The PV can take an index to access a specif branch: $(branch(name)[index]) | ||
+ | |||
+ | Example: | ||
+ | |||
+ | < | ||
+ | $var(i)=0; | ||
+ | while($var(i)< | ||
+ | { | ||
+ | | ||
+ | | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | |||
+ | ==== Request' | ||
+ | |||
+ | **$br** - reference to request' | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | ==== Request' | ||
+ | |||
+ | **$bR** - reference to request' | ||
+ | |||
+ | ==== Branch flags ==== | ||
+ | |||
+ | **$bf** - reference to branch flags of branch 0 (RURI) - decimal output | ||
+ | |||
+ | |||
+ | ==== Branch flags ==== | ||
+ | |||
+ | **$bF** - reference to branch flags of branch 0 (RURI) - hexa output | ||
+ | |||
+ | ==== Body size ==== | ||
+ | |||
+ | **$bs** - body size | ||
+ | |||
+ | ==== Call-Id ==== | ||
+ | |||
+ | **$ci** - reference to body of call-id header | ||
+ | |||
+ | ==== Content-Length ==== | ||
+ | |||
+ | **$cl** - reference to body of content-length header | ||
+ | |||
+ | ==== CSeq ==== | ||
+ | |||
+ | **$cs** - reference to the sequence number in the cseq header. The method in the CSeq header is identical to the request method, thus use $rm to get the methode (works also for responses). | ||
+ | |||
+ | ==== Contact header ==== | ||
+ | |||
+ | **$ct** - reference to body of contact header | ||
+ | |||
+ | |||
+ | ==== Content-Type ==== | ||
+ | |||
+ | **$cT** - reference to body of content-type header | ||
+ | |||
+ | ==== Domain of destination URI ==== | ||
+ | |||
+ | **$dd** - reference to domain of destination uri | ||
+ | |||
+ | |||
+ | ==== Diversion header URI ==== | ||
+ | |||
+ | **$di** - reference to Diversion header URI | ||
+ | |||
+ | ==== Diversion " | ||
+ | |||
+ | **$dip** - reference to Diversion header " | ||
+ | |||
+ | ==== Diversion " | ||
+ | |||
+ | **$dir** - reference to Diversion header " | ||
+ | |||
+ | |||
+ | |||
+ | ==== Port of destination URI ==== | ||
+ | |||
+ | **$dp** - reference to port of destination uri | ||
+ | |||
+ | ==== Transport protocol of destination URI ==== | ||
+ | |||
+ | **$dP** - reference to transport protocol of destination uri | ||
+ | |||
+ | ==== Destination set ==== | ||
+ | |||
+ | **$ds** - reference to destination set | ||
+ | |||
+ | |||
+ | ==== Destination URI ==== | ||
+ | |||
+ | **$du** - reference to destination uri | ||
+ | If loose_route() returns TRUE a destination uri is set according to the first Route header. | ||
+ | $du is also set if lookup() function of ' | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | To reset $du: | ||
+ | $du = $null; | ||
+ | |||
+ | ==== Error class ==== | ||
+ | |||
+ | **$err.class** - the class of error (now is ' | ||
+ | |||
+ | ==== Error level ==== | ||
+ | |||
+ | **$err.level** - severity level for the error | ||
+ | |||
+ | ==== Error info ==== | ||
+ | |||
+ | **$err.info** - text describing the error | ||
+ | |||
+ | ==== Error reply code ==== | ||
+ | |||
+ | **$err.rcode** - recommended reply code | ||
+ | |||
+ | ==== Error reply reason ==== | ||
+ | |||
+ | |||
+ | **$err.rreason** - recommended reply reason phrase | ||
+ | |||
+ | ==== From URI domain ==== | ||
+ | |||
+ | **$fd** - reference to domain in URI of ' | ||
+ | |||
+ | ==== From display name ==== | ||
+ | |||
+ | **$fn** - reference to display name of ' | ||
+ | |||
+ | ==== From tag ==== | ||
+ | |||
+ | **$ft** - reference to tag parameter of ' | ||
+ | |||
+ | ==== From URI ==== | ||
+ | |||
+ | **$fu** - reference to URI of ' | ||
+ | |||
+ | ==== From URI username ==== | ||
+ | |||
+ | **$fU** - reference to username in URI of ' | ||
+ | |||
+ | ==== SIP message buffer ==== | ||
+ | |||
+ | **$mb** - reference to SIP message buffer | ||
+ | |||
+ | ==== Flags ==== | ||
+ | |||
+ | **$mf** - reference to message/ | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | ==== Flags in hexadecimal ==== | ||
+ | |||
+ | **$mF** -reference to message/ | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | ==== SIP message id ==== | ||
+ | |||
+ | **$mi** - reference to SIP message id | ||
+ | |||
+ | ==== SIP message length ==== | ||
+ | |||
+ | **$ml** - reference to SIP message length | ||
+ | |||
+ | ==== Reference to null ==== | ||
+ | |||
+ | **$null** - reference to NULL (used to set a PV/AVP to null) | ||
+ | |||
+ | ==== Domain in SIP Request' | ||
+ | |||
+ | **$od** - reference to domain in request' | ||
+ | |||
+ | ==== Port of SIP request' | ||
+ | |||
+ | **$op** - reference to port of original R-URI | ||
+ | |||
+ | ==== Transport protocol of SIP request original URI ==== | ||
+ | |||
+ | **$oP** - reference to transport protocol of original R-URI | ||
+ | |||
+ | ==== SIP Request' | ||
+ | |||
+ | **$ou** - reference to request' | ||
+ | |||
+ | ==== Username in SIP Request' | ||
+ | |||
+ | **$oU** - reference to username in request' | ||
+ | |||
+ | ==== Domain in SIP Request' | ||
+ | |||
+ | **$pd** - reference to domain in request' | ||
+ | |||
+ | ==== Display Name in SIP Request' | ||
+ | |||
+ | **$pn** - reference to Display Name in request' | ||
+ | |||
+ | |||
+ | ==== Process id ==== | ||
+ | |||
+ | **$pp** - reference to process id (pid) | ||
+ | |||
+ | ==== Protocol of received message ==== | ||
+ | |||
+ | **$pr** or **$proto** - protocol of received message (UDP, TCP, TLS, SCTP) | ||
+ | |||
+ | ==== User in SIP Request' | ||
+ | |||
+ | **$pU** - reference to user in request' | ||
+ | |||
+ | ==== URI in SIP Request' | ||
+ | |||
+ | **$pu** - reference to URI in request' | ||
+ | |||
+ | |||
+ | ==== Domain in SIP Request' | ||
+ | |||
+ | **$rd** - reference to domain in request' | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | ==== Body of request/ | ||
+ | |||
+ | **$rb** - reference to message body | ||
+ | |||
+ | |||
+ | |||
+ | ==== Returned code ==== | ||
+ | |||
+ | **$rc** - reference to returned code by last invoked function | ||
+ | |||
+ | **$retcode** - same as **$rc** | ||
+ | |||
+ | ==== Remote-Party-ID header URI ==== | ||
+ | |||
+ | **$re** - reference to Remote-Party-ID header URI | ||
+ | |||
+ | ==== SIP request' | ||
+ | |||
+ | **$rm** - reference to request' | ||
+ | |||
+ | ==== SIP request' | ||
+ | |||
+ | **$rp** - reference to port of R-URI | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | ==== Transport protocol of SIP request URI ==== | ||
+ | |||
+ | **$rP** - reference to transport protocol of R-URI | ||
+ | |||
+ | ==== SIP reply' | ||
+ | |||
+ | **$rr** - reference to reply' | ||
+ | |||
+ | ==== SIP reply' | ||
+ | |||
+ | **$rs** - reference to reply' | ||
+ | |||
+ | ==== Refer-to URI ==== | ||
+ | |||
+ | **$rt** - reference to URI of refer-to header | ||
+ | |||
+ | ==== SIP Request' | ||
+ | |||
+ | **$ru** - reference to request' | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | ==== Username in SIP Request' | ||
+ | |||
+ | **$rU** - reference to username in request' | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | ==== Received IP address ==== | ||
+ | |||
+ | **$Ri** - reference to IP address of the interface where the request has been received | ||
+ | |||
+ | ==== Received port ==== | ||
+ | |||
+ | **$Rp** - reference to the port where the message was received | ||
+ | |||
+ | ==== Script flags ==== | ||
+ | |||
+ | **$sf** - reference to script flags - decimal output | ||
+ | |||
+ | |||
+ | ==== Script flags ==== | ||
+ | |||
+ | **$sF** - reference to script flags - hexa output | ||
+ | |||
+ | ==== IP source address ==== | ||
+ | |||
+ | **$si** - reference to IP source address of the message | ||
+ | |||
+ | ==== Source port ==== | ||
+ | |||
+ | **$sp** - reference to the source port of the message | ||
+ | |||
+ | ==== Statistics ==== | ||
+ | |||
+ | **$stat(name)** - return the value of statistic item specified by ' | ||
+ | |||
+ | ==== Forced socket ==== | ||
+ | |||
+ | **$fs** - reference to the forced socket for message sending (if any) in the form proto: | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | ==== To URI Domain ==== | ||
+ | |||
+ | **$td** - reference to domain in URI of ' | ||
+ | |||
+ | ==== To display name ==== | ||
+ | |||
+ | **$tn** - reference to display name of ' | ||
+ | |||
+ | ==== To tag ==== | ||
+ | |||
+ | **$tt** - reference to tag parameter of ' | ||
+ | |||
+ | ==== To URI ==== | ||
+ | |||
+ | **$tu** - reference to URI of ' | ||
+ | |||
+ | |||
+ | ==== To URI Username ==== | ||
+ | |||
+ | **$tU** - reference to username in URI of ' | ||
+ | |||
+ | |||
+ | |||
+ | ==== String formatted time - cached ==== | ||
+ | |||
+ | **$Tf** - reference string formatted time | ||
+ | |||
+ | Note: the system time is retrieved only once for each processed SIP message. Subsequent calls of $Tf for same SIP message will return same value. | ||
+ | |||
+ | ==== String formatted time - current ==== | ||
+ | |||
+ | **$TF** - reference string formatted time | ||
+ | |||
+ | Note: the system time is computed for each call of $TF. Subsequent calls of $TF for same SIP message may return different values. | ||
+ | |||
+ | ==== Unix time stamp - cached ==== | ||
+ | |||
+ | **$Ts** - reference to unix time stamp | ||
+ | |||
+ | Note: the system time is retrieved only once for each processed SIP message. Subsequent calls of $Ts for same SIP message will return same value. | ||
+ | |||
+ | ==== Unix time stamp - current ==== | ||
+ | |||
+ | **$TS** - reference to unix time stamp | ||
+ | |||
+ | Note: the system time is computed for each call of $TS. Subsequent calls of $TS for same SIP message may return different values. | ||
+ | |||
+ | ==== User agent header ==== | ||
+ | |||
+ | **$ua** - reference to user agent header field | ||
+ | |||
+ | ==== AVPs ==== | ||
+ | |||
+ | **$(avp(id)[N])** - represents the value of N-th AVP identified by ' | ||
+ | |||
+ | The ' | ||
+ | |||
+ | * " | ||
+ | * " | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | ==== Headers ==== | ||
+ | |||
+ | |||
+ | **$(hdr(name)[N])** - represents the body of the N-th header identified by ' | ||
+ | |||
+ | The module should identify most of compact header names (the ones recognised by SIP-Router which should be all at this moment), if not, the compact form has to be specified explicitly. It is recommended to use dedicated specifiers for headers (e.g., %ua for user agent header), if they are available -- they are faster. | ||
+ | |||
+ | ==== Script variables ==== | ||
+ | |||
+ | **$var(name)** - refers to variables that can be used in configuration script, having integer or string value. This kind of variables are faster the AVPs, being referenced directly to memory location. The value of script variables persists over the processing of SIP messages, being specific per each SIP-Router process. | ||
+ | |||
+ | Example of usage: | ||
+ | |||
+ | < | ||
+ | $var(a) = 2; -- sets the value of variable ' | ||
+ | $var(a) = " | ||
+ | $var(a) = 3 + (7& | ||
+ | $var(a) = " | ||
+ | |||
+ | if( [ $var(a) & 4 ] ) { | ||
+ | xlog(" | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Setting a variable to null is actually initializing the value to integer ' | ||
+ | |||
+ | **Note:** A script variable persists over the SIP-Router process in which it was initialized, | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | [b]pv[/b] module can be used to initialise the script variables. | ||
+ | |||
+ | ==== Shared variables ==== | ||
+ | |||
+ | **$shv(name)** | ||
+ | |||
+ | Example - shv(name) pseudo-variable usage: | ||
+ | |||
+ | < | ||
+ | ... | ||
+ | modparam(" | ||
+ | ... | ||
+ | if ($shv(debug) == 1) { | ||
+ | xlog(" | ||
+ | } | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | <hi # | ||
+ | ==== Broken-down time ==== | ||
+ | |||
+ | **$time(name)** - the PV provides access to broken-down time attributes. | ||
+ | |||
+ | The ' | ||
+ | * sec - return seconds (int 0-59) | ||
+ | * min - return minutes (int 0-59) | ||
+ | * hour - return hours (int 0-23) | ||
+ | * mday - return the day of month (int 0-59) | ||
+ | * mon - return the month (int 1-12) | ||
+ | * year - return the year (int, e.g., 2008) | ||
+ | * wday - return the day of week (int, 1=Sunday - 7=Saturday) | ||
+ | * yday - return the day of year (int, 1-366) | ||
+ | * isdst - return daylight saving time status (int, 0 - DST off, >0 DST on) | ||
+ | |||
+ | Example - time(name) pseudo-variable usage: | ||
+ | |||
+ | <code c> | ||
+ | ... | ||
+ | if ($time(year) == 2008) { | ||
+ | xlog(" | ||
+ | } | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | ==== Selects ==== | ||
+ | |||
+ | **$sel(name)** - return the value of **select** specified by name. **select** refers a class of config variables introduced by SER 2.0, allowing to select and return parts of sip messages and not only. | ||
+ | |||
+ | List of available selects: | ||
+ | * http:// | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code c> | ||
+ | |||
+ | if($sel(via[1].host)==" | ||
+ | { | ||
+ | ... | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ==== Send Addr Attributes ==== | ||
+ | |||
+ | **$snd(name)** - return attributes of the address where the request is going to be sent. They are available in **onsend_route**. The name can be: | ||
+ | |||
+ | * ip - IP address of destination | ||
+ | * af - address family to be used to send | ||
+ | * port - port of destination address | ||
+ | * proto - transport protocol to be used to send | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code c> | ||
+ | |||
+ | onsend_route { | ||
+ | if($snd(ip)==" | ||
+ | { | ||
+ | ... | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ===== Dialog module Pseudo-Variables ===== | ||
+ | |||
+ | ==== $dlg(attr) ==== | ||
+ | |||
+ | Return the attribute of the current processed dialog. | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | The ' | ||
+ | * h_id - hash id | ||
+ | * h_entry - hash entry | ||
+ | * ref - reference count | ||
+ | * state - state of dialog | ||
+ | * to_rs - To route set | ||
+ | * from_rs - From route set | ||
+ | * dflags - dialog internal flags | ||
+ | * sflags - dialog script flags | ||
+ | * callid - sip call id | ||
+ | * to_uri - To uri | ||
+ | * to_tag - To tag | ||
+ | * from_uri - From uri | ||
+ | * from_tag - From tag | ||
+ | * toroute - timeout route | ||
+ | * lifetime - timeout inteval | ||
+ | * start_ts - start timestamp | ||
+ | * to_cseq - To CSeq | ||
+ | * from_cseq - From CSeq | ||
+ | * to_contact - To contact address | ||
+ | * from_contact - From contact address | ||
+ | * to_bindaddr - To bind address | ||
+ | * from_bindaddr - From bind address | ||
+ | |||
+ | ==== $dlg_ctx(attr) ==== | ||
+ | |||
+ | Return the attribute of the context for current processed dialog. | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | The ' | ||
+ | * set | ||
+ | * flags | ||
+ | * timeout_route | ||
+ | * timeout_bye | ||
+ | |||
+ | |||
+ | ===== HTable module Pseudo-Variables ===== | ||
+ | |||
+ | ==== $sht(htable=> | ||
+ | |||
+ | Access hash table entries. | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | The “htname” must be a hash table name defined via “htable” parameter. | ||
+ | |||
+ | The “key” can be: | ||
+ | |||
+ | * static string - set of characters without pseudo-variables | ||
+ | * dynamic string - set of characters that include pseudo-variables. The pseudo-variables will be evaluated at runtime. | ||
+ | |||
+ | < | ||
+ | ... | ||
+ | modparam(" | ||
+ | ... | ||
+ | $sht(a=> | ||
+ | $sht(a=> | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | ==== $shtex(htable=> | ||
+ | |||
+ | Access hash table entry expire value. Value represents the seconds until the htable entry will expire and be deleted from htable. | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | The “htname” must be a hash table name defined via “htable” parameter and have auto-expire greater than 0. | ||
+ | |||
+ | The “key” can be: | ||
+ | |||
+ | * static string - set of characters without pseudo-variables | ||
+ | * dynamic string - set of characters that include pseudo-variables. The pseudo-variables will be evaluated at runtime. | ||
+ | |||
+ | < | ||
+ | ... | ||
+ | modparam(" | ||
+ | ... | ||
+ | $sht(a=> | ||
+ | $shtex(a=> | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | |||
+ | ==== $shtcn(htable=> | ||
+ | |||
+ | Count items matching the name by regexp. | ||
+ | |||
+ | The “htname” must be a hash table name defined via “htable” parameter. | ||
+ | |||
+ | The “regexp” must be a regular expression. | ||
+ | |||
+ | < | ||
+ | ... | ||
+ | modparam(" | ||
+ | ... | ||
+ | $sht(a=> | ||
+ | $shtex(a=> | ||
+ | xlog(" | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | ==== $shtcv(htable=> | ||
+ | |||
+ | Count items matching the value by regexp. | ||
+ | |||
+ | The “htname” must be a hash table name defined via “htable” parameter. | ||
+ | |||
+ | The “regexp” must be a regular expression. | ||
+ | |||
+ | < | ||
+ | ... | ||
+ | modparam(" | ||
+ | ... | ||
+ | $sht(a=> | ||
+ | $shtex(a=> | ||
+ | xlog(" | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | ===== Memcached module Pseudo-Variables ===== | ||
+ | |||
+ | ==== $mct(key) ==== | ||
+ | |||
+ | Access hash table entries stored in the memcached server. | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | The “key” can be: | ||
+ | |||
+ | * static string - set of characters without pseudo-variables | ||
+ | * dynamic string - set of characters that include pseudo-variables. The pseudo-variables will be evaluated at runtime. | ||
+ | |||
+ | < | ||
+ | ... | ||
+ | $mct($au) = 1; | ||
+ | $mct($ru) = $fu; | ||
+ | $mct(test) = 1; | ||
+ | xlog(" | ||
+ | $mct(test) = $null; # delete it | ||
+ | xlog(" | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | ==== $mcinc(key) ==== | ||
+ | |||
+ | Do a atomic increment operation on the value stored in memcached. You need to add a value previously. | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | The “key” can be: | ||
+ | |||
+ | * static string - set of characters without pseudo-variables | ||
+ | * dynamic string - set of characters that include pseudo-variables. The pseudo-variables will be evaluated at runtime. | ||
+ | |||
+ | < | ||
+ | ... | ||
+ | $mct(cnt) = 1; | ||
+ | $mcinc(cnt) = 2; # increment by 2 | ||
+ | xlog(" | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | ==== $mcdec(key) ==== | ||
+ | |||
+ | Do a atomic decrement operation on the value stored in memcached. You need to add a value previously. | ||
+ | |||
+ | <hi # | ||
+ | |||
+ | The “key” can be: | ||
+ | |||
+ | * static string - set of characters without pseudo-variables | ||
+ | * dynamic string - set of characters that include pseudo-variables. The pseudo-variables will be evaluated at runtime. | ||
+ | |||
+ | < | ||
+ | ... | ||
+ | $mct(cnt) = 10; | ||
+ | $mcdec(cnt) = 2; # decrement by 2 | ||
+ | xlog(" | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | ===== Presence_xml Pseudo-Variables ===== | ||
+ | |||
+ | ==== $xml(name=> | ||
+ | |||
+ | * name - id to refer the documet | ||
+ | * spec - specifier: | ||
+ | * doc - set/get the document as text | ||
+ | * xpath: | ||
+ | |||
+ | Example: | ||
+ | |||
+ | < | ||
+ | $xml(x=> | ||
+ | xlog(" | ||
+ | $xml(x=> | ||
+ | </ | ||
+ | |||
+ | ===== TMX module Pseudo-Variables ===== | ||
+ | |||
+ | ==== $T_branch_idx ==== | ||
+ | |||
+ | * the index (starting with 1 for the first branch) of the branch for which is executed the branch_route[]. If used outside of branch_route[] block, the value is ' | ||
+ | |||
+ | ==== $T_reply_code ==== | ||
+ | |||
+ | * the code of the reply, as follows: in request_route will be the last stateful sent reply; in reply_route will be the current processed reply; in failure_route will be the negative winning reply. In case of no-reply or error, ' | ||
+ | |||
+ | ==== $T_req(pv) ==== | ||
+ | |||
+ | * can be used in reply routes or inside the modules to get access to attributes of the request belonging to same transaction as the reply | ||
+ | |||
+ | < | ||
+ | route { | ||
+ | t_on_reply(" | ||
+ | t_relay(); | ||
+ | } | ||
+ | |||
+ | onreply_route[1] { | ||
+ | xlog(" | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ==== $T_rpl(pv) ==== | ||
+ | |||
+ | * can be used in failure routes or inside the modules to get access to attributes of the winning reply belonging to same transaction as the request | ||
+ | < | ||
+ | route { | ||
+ | t_on_failure(" | ||
+ | t_relay(); | ||
+ | } | ||
+ | |||
+ | failure_route[1] { | ||
+ | xlog(" | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ==== $T_inv(pv) ==== | ||
+ | |||
+ | * can be used in request routes or inside the modules to get access to attributes of the INVITE request while processing a CANCEL. | ||
+ | |||
+ | < | ||
+ | route { | ||
+ | if(is_method(" | ||
+ | { | ||
+ | | ||
+ | { | ||
+ | # first flag is set in the INVITE transaction | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== UAC module Pseudo-Variables ===== | ||
+ | |||
+ | ==== $uac_req(key) ==== | ||
+ | |||
+ | * used to build the input for uac_send_req() function of UAC module | ||
+ | |||
+ | key can be: | ||
+ | * method - SIP method | ||
+ | * ruri - request URI | ||
+ | * furi - From URI | ||
+ | * turi - To URI | ||
+ | * ouri - Outbound proxy URI | ||
+ | * hdrs - SIP Headers | ||
+ | * body - Body | ||
+ | * all - alias for everything, useful to reset all fields (see examples) | ||
+ | |||
+ | Examples: | ||
+ | < | ||
+ | # reset everything | ||
+ | $uac_req(all) = $null; | ||
+ | |||
+ | #prepare UAC request | ||
+ | $uac_req(method)=" | ||
+ | $uac_req(ruri)=" | ||
+ | $uac_req(furi)=" | ||
+ | $uac_req(turi)=" | ||
+ | uac_send_req(); | ||
+ | </ | ||
+ | |||
+ | ===== Special pseudo-variables in OpenSER - Escape Sequences ===== | ||
+ | |||
+ | |||
+ | These pseudo variables are exported, and mainly used, by xlog module to print messages in many colors (foreground and background) using escape sequences. | ||
+ | |||
+ | |||
+ | ==== Foreground and background colors ==== | ||
+ | |||
+ | |||
+ | |||
+ | $C(xy) - reference to an escape sequence. “x” represents the foreground color and “y” represents the background color. | ||
+ | |||
+ | Colors could be: | ||
+ | |||
+ | * x : default color of the terminal | ||
+ | * s : Black | ||
+ | * r : Red | ||
+ | * g : Green | ||
+ | * y : Yellow | ||
+ | * b : Blue | ||
+ | * p : Purple | ||
+ | * c : Cyan | ||
+ | * w : White | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | ===== Examples ===== | ||
+ | |||
+ | |||
+ | A few examples of usage. | ||
+ | |||
+ | Example 1. Pseudo-variables usage | ||
+ | <code c> | ||
+ | ... | ||
+ | avp_aliases=" | ||
+ | ... | ||
+ | route { | ||
+ | ... | ||
+ | $avp(uuid)=" | ||
+ | $avp(i:20)= $avp(uuid) + ": " + $fu; | ||
+ | xdbg(" | ||
+ | ... | ||
+ | } | ||
+ | ... | ||
+ | </ | ||