Login | Register

Documentation

Documentation -> Manuals -> Manual 3.2 -> Core functions

Pages for other versions: devel 3.4 3.3 3.2 3.1 Older versions: 3.0 2.4 2.3 2.2 2.1 1.11 1.10 1.9 1.8 1.7 1.6 1.5 1.4


Core functions v3.2
PrevNext

Table of Contents (hide)

  1. 1. add_local_rport()
  2. 2. assert()
  3. 3. append_branch([uri], [qvalue])
  4. 4. cache_store(storage_id, attribute, value, [timeout])
  5. 5. cache_remove(storage_id, attribute)
  6. 6. cache_fetch(storage_id, attribute, result_pv)
  7. 7. cache_counter_fetch(storage_id, counter_attribute, result)
  8. 8. cache_add( storage_id, attribute, increment, expire, [new_val])
  9. 9. cache_sub(storage_id, attribute, decrement, expire, [new_val])
  10. 10. cache_raw_query(storage_id, raw_query, result)
  11. 11. break()
  12. 12. construct_uri(proto,[user],domain,[port],[extra],result)
  13. 13. drop()
  14. 14. exit()
  15. 15. force_rport()
  16. 16. force_send_socket(proto:address[:port])
  17. 17. force_tcp_alias([port_alias])
  18. 18. forward(destination)
  19. 19. get_timestamp(sec_avp,usec_avp)
  20. 20. isdsturiset()
  21. 21. isflagset(string)
  22. 22. isbflagset(flag, [branch_idx])
  23. 23. is_myself(host, [port])
  24. 24. log([level,] string)
  25. 25. next_branches()
  26. 26. prefix(str)
  27. 27. pv_printf(pv, fmt_str)
  28. 28. raise_event(event, [attrs], [vals])
  29. 29. remove_branch(branch_idx)
  30. 30. return(int)
  31. 31. resetdsturi()
  32. 32. resetflag(flag)
  33. 33. resetbflag(flag, [branch_idx])
  34. 34. revert_uri()
  35. 35. sethost(host)
  36. 36. sethostport(hostport)
  37. 37. setuser(user)
  38. 38. setuserpass(pass)
  39. 39. setport(port)
  40. 40. seturi(str)
  41. 41. route(name [, param1 [, param2 [, ...] ] ] )
  42. 42. script_trace([log_level, pv_format_string, [info) ]]
  43. 43. send(destination [, headers])
  44. 44. serialize_branches(clear_previous[, keep_order])
  45. 45. set_advertised_address(adv_addr)
  46. 46. set_advertised_port(adv_port)
  47. 47. setdsturi(uri)
  48. 48. setflag(flag)
  49. 49. setbflag(flag, [branch_idx])
  50. 50. strip(n)
  51. 51. strip_tail(n)
  52. 52. subscribe_event(string, string [, int])
  53. 53. use_blacklist(bl_name)
  54. 54. unuse_blacklist(bl_name)
  55. 55. xlog([log_level, ]format_string)

This section lists the all the functions exported by OpenSIPS core for script usage (to be used in opensips.cfg)

1. add_local_rport() 🔗

Add 'rport' parameter to the Via header generated by server (see RFC3581 for its meaning). It affects only the current processed request.

Example of usage:

    add_local_rport()

2. assert() 🔗

Only works if enable_asserts is set to true. If the given expression evaluates to false, script execution is stopped and the error_route is executed. If abort_on_assert is enabled, OpenSIPS will also shutdown.

Example of usage:

    assert($ua != "friendly-scanner", "Forbidden UA: \"friendly-scanner\"");

3. append_branch([uri], [qvalue]) 🔗

Similarly to t_fork_to, it extends destination set by a new entry. The difference is that current URI is taken as new entry.

Without parameter, the function copies the current URI into a new branch. Thus, leaving the main branch (the URI) for further manipulation.

With a parameter, the function copies the URI in the parameter into a new branch. Thus, the current URI is not manipulated.

Note that it's not possible to append a new branch in "on_failure_route" block if a 6XX response has been previously received (it would be against RFC 3261).

Parameters:

  • uri (string, optional)
  • qvalue (string, optional)

Example of usage:

    # if someone calls B, the call should be forwarded to C too.
    #
    if ($rm=="INVITE" && $ru=~"sip:B@xx.xxx.xx ")
    {
        # copy the current branch (branches[0]) into
        # a new branch (branches[1])
        append_branch();
        # all URI manipulation functions work on branches[0]
        # thus, URI manipulation does not touch the 
        # appended branch (branches[1])
        seturi("sip:C@domain");

        # now: branch 0 = C@domain
        #      branch 1 = B@xx.xx.xx.xx

        # and if you need a third destination ...

        # copy the current branch (branches[0]) into
        # a new branch (branches[2])
        append_branch();

        # all URI manipulation functions work on branches[0]
        # thus, URI manipulation does not touch the 
        # appended branch (branches[1-2])
        seturi("sip:D@domain");

        # now: branch 0 = D@domain
        #      branch 1 = B@xx.xx.xx.xx
        #      branch 2 = C@domain

        t_relay();
        exit;
    };

    # You could also use append_branch("sip:C@domain") which adds a branch with the new URI:


    if(method=="INVITE" && uri=~"sip:B@xx.xxx.xx ") {
        # append a new branch with the second destination
        append_branch("sip:user@domain");
        # now: branch 0 = B@xx.xx.xx.xx
        # now: branch 1 = C@domain

        t_relay();
        exit;
}

4. cache_store(storage_id, attribute, value, [timeout]) 🔗

This sets in a memory-cache-like storage system a new value for an attribute. If the attribute does not already exist in the memcache, it will be inserted with the given value; if already present, its value will be replaced with the new one. The function may optionally take an extra parameter, a timeout (or lifetime) value for the attribute - after the lifetime is exceeded, the attribute is automatically purged from memcache. If "timeout" is omitted or has a value or 0, the attribute/value pair will never expire.

Function returns true if the new attribute was successfully inserted.

Parameters:

  • storage_id (string)
  • attribute (string)
  • value (string)
  • timeout (int, optional)
cache_store("local", "total_minutes_$fU", "$avp(mins)", 1200);

OR

modparam("cachedb_redis", "cachedb_url", "redis:cluster1://193.268.3.234:6379/")
...
cache_store("redis:cluster1", "passwd_$tu", "$var(x)");

More complex examples can be found in the Key-Value Interface Tutorial.

5. cache_remove(storage_id, attribute) 🔗

This removes an attribute from a memory-cache-like storage system. Function returns false only if the storage_id is invalid.

Parameters:

  • storage_id (string)
  • attribute (string)
cache_remove("local", "total_minutes_$fU");

OR

modparam("cachedb_redis", "cachedb_url", "redis:cluster1://193.268.3.234:6379/")
...
cache_remove("redis:cluster1", "total_minutes_$fU");

More complex examples can be found in the Key-Value Interface Tutorial.

6. cache_fetch(storage_id, attribute, result_pv) 🔗

Fetch the value of an attribute from a memory-cache-like storage system. On a successful fetch, the result will be stored in the variable specified by result_pv.

Function returns true if the attribute was found and its value successfully returned.

Parameters:

  • storage_id (string)
  • attribute (string)
  • result_pv (var)
cache_fetch("local", "credit_$fU", $var(ret));

OR

modparam("cachedb_redis", "cachedb_url", "redis:cluster1://193.268.3.234:6379/")
...
cache_fetch("redis:cluster1", "credit_$fU", $var(ret));

More complex examples can be found in the Key-Value Interface Tutorial.

7. cache_counter_fetch(storage_id, counter_attribute, result) 🔗

This function fetches from a memory-cache-like storage system the value of a counter. The result (if any) will be stored in the variable specified by result.

Function returns true if the attribute was found and its value returned.

Parameters:

  • storage_id (string)
  • attribute (string)
  • result (var)
cache_counter_fetch("local", "my_counter", $var(counter_val));

OR

modparam("cachedb_redis", "cachedb_url", "redis:cluster1://193.268.3.234:6379/")
...
cache_fetch("redis:cluster1", "my_counter", $var(redis_counter_val));

8. cache_add( storage_id, attribute, increment, expire, [new_val]) 🔗

This increments an attribute in a memory-cache-like storage system that supports such an operation. If the attribute does not exit, it will be created with the value of increment.

Function returns false if increment fails.

Parameters:

  • storage_id (string)
  • attribute (string)
  • increment (int)
  • expire (int) - if greater than 0, the key will also expire in the specified number of seconds
  • new_val (var, optional) - variable in which to fetch the new value of the counter.

modparam("cachedb_redis", "cachedb_url", "redis:cluster1://193.268.3.234:6379/")
...
cache_add("redis:cluster1", "my_counter", 5, 0);

More complex examples can be found in the Key-Value Interface Tutorial.

9. cache_sub(storage_id, attribute, decrement, expire, [new_val]) 🔗

This decrements an attribute in a memory-cache-like storage system that supports such an operation.

Function returns false if decrement fails.

Parameters:

  • storage_id (string)
  • attribute (string)
  • increment (int)
  • expire (int) - if greater than 0, the key will also expire in the specified number of seconds
  • new_val (var, optional) - variable in which to fetch the new value of the counter.

modparam("cachedb_redis", "cachedb_url", "redis:cluster1://193.268.3.234:6379/")
...
cache_sub("redis:cluster1", "my_counter", 5, 0);

More complex examples can be found in the Key-Value Interface Tutorial.

10. cache_raw_query(storage_id, raw_query, result) 🔗

The function runs the provided raw query (in the back-end dependent language) and returns the results (if any) in the AVP (or AVP list) provided in result. This parameter may be missing, if the query returns no results.

Function returns false if query fails.

Parameters:

  • storage_id (string)
  • raw_query (string)
  • result (string, optional, no expand)
...
cache_raw_query("mongodb", "{ \"op\" : \"count\",\"query\": { \"username\" : $rU} }", "$avp(mongo_count_result)");
...

More complex examples can be found in the Key-Value Interface Tutorial.

11. break() 🔗

Since v0.10.0-dev3, 'break' can no longer be used to stop the execution of a route. The only place to use is to end a 'case' block in a 'switch' statement. 'return' must be now used instead of old 'break'.

'return' and 'break' have now a similar meaning as in c/shell.

12. construct_uri(proto,[user],domain,[port],[extra],result) 🔗

The function builds a valid sip uri based on the arguments it receives. The result (if any) will be stored in the result AVP variable. If you want to omit a part of the sip uri, just omit the respective parameter.

Parameters:

  • proto (string)
  • user (string, optional)
  • domain (string)
  • port (string, optional)
  • extra (string, optional)
  • result (var)

Example usage:

construct_uri("$var(proto)", "vlad", "$var(domain)", "", "$var(params)",$avp(s:newuri));
xlog("Constructed URI is <$avp(s:newuri)> \n");

13. drop() 🔗

Stop the execution of the configuration script and alter the implicit action which is done afterwards.

If the function is called in a 'branch_route' then the branch is discarded (implicit action for 'branch_route' is to forward the request).

If the function is called in a 'onreply_route' then any provisional reply is discarded (implicit action for 'onreply_route' is to send the reply upstream according to Via header).

Example of usage:

    onreply_route {
        if($rs=="183") {
            drop();
        }
    }

14. exit() 🔗

Stop the execution of the configuration script -- it has the same behaviour as return(0). It does not affect the implicit action to be taken after script execution.

  route {
    if (route(2)) {
      xlog("L_NOTICE","method $rm is INVITE\n");
    } else {
      xlog("L_NOTICE","method is $rm\n");
    };
  }

  route[2] {
    if (is_method("INVITE")) {
      return(1);
    } else if (is_method("REGISTER")) {
      return(-1);
    } else if (is_method("MESSAGE")) {
      sl_send_reply("403","IM not allowed");
      exit;
    };
  }

15. force_rport() 🔗

Force_rport() adds the rport parameter to the first Via header. Thus, OpenSIPS will add the received IP port to the top most via header in the SIP message, even if the client does not indicate support for rport. This enables subsequent SIP messages to return to the proper port later on in a SIP transaction.

The rport parameter is defined in RFC 3581.

Example of usage:

    force_rport();

16. force_send_socket(proto:address[:port]) 🔗

Force OpenSIPS to send the message from the specified socket (it _must_ be one of the sockets OpenSIPS listens on). If the protocol doesn't match (e.g. UDP message "forced" to a TCP socket) the closest socket of the same protocol is used.

Parameters:

  • socket (string)

Example of usage:

    force_send_socket("tcp:10.10.10.10:5060");

17. force_tcp_alias([port_alias]) 🔗

Enables TCP connection reusage (RFC 5923) for the current TLS (or WSS, TCP, WS) connection (source IP + source port + transport), regardless if the Via header field contains an ";alias" parameter or not. All backwards SIP requests, towards the same (source IP + Via port + transport) pair will be forced over this connection, for as long as it stays open. The main purpose of this function (and of RFC 5923) is to minimize the number of TLS connections a SIP proxy must set up, due to the significant CPU overhead of the TLS cipher negotiation phase.

Parameters:

  • port_alias (int, optional)


WARNING! Do not perform force_tcp_alias() for end-user initiated connections (who are most likely grouped by one or more public IPs), as this would create an open vector for call hijacking!

18. forward(destination) 🔗

Forward the SIP request to the given destination in stateless mode. This has the format of [proto:]host[:port]. Host can be an IP or hostname; supported protocols are UDP, TCP and TLS. (For TLS, you need to compile the TLS support into core). If proto or port are not specified, NAPTR and SRV lookups will be used to determine them (if possible).

Parameters:

  • destination (string, optional) - if missing, the forward will be done based on RURI.

Example of usage:

    forward("10.0.0.10:5060");
    #or
    forward();

19. get_timestamp(sec_avp,usec_avp) 🔗

Returns the current timestamp, seconds and microseconds of the current second, from a single system call.

Parameters:

  • sec_avp (var)
  • usec_avp (var)

Example of usage:

     get_timestamp($avp(sec),$avp(usec));

20. isdsturiset() 🔗

Test if the dst_uri field (next hop address) is set.

Example of usage:

    if(isdsturiset()) {
        log("dst_uri is set\n");
    };

21. isflagset(string) 🔗

Test if a flag is set for currently processed message.

For more see Flags Documentation.

Parameters:

  • flag (string, static)

Example of usage:

    if (isflagset("NAT_PING"))
        log("flag NAT_PING is set\n");

22. isbflagset(flag, [branch_idx]) 🔗

Test if a flag is set for a specific branch. "branch_idx" identifies the branch for which the flags are tested - it must be a positive number. Branch index 0 refers to the RURI branch. If this parameter is missing, 0 branch index is used as default.

For more about script flags, see Flags Documentation.

Parameters:

  • flag (string, static)
  • branch_idx (int, optional)

Example of usage:

    if (isbflagset(1, "NAT_PING"))
        log("flag NAT_PING is set in branch 1\n");

23. is_myself(host, [port]) 🔗

Test if the host and optionally the port represent one of the addresses that OpenSIPS listens on. This checks the list of local IP addresses, hostnames and aliases that have been set in the OpenSIPS configuration file.

Parameters:

  • host (string)
  • port (int, optional)

Example of usage:

    if (is_myself("$rd", $rp)
        xlog("the request is for local processing\n");

24. log([level,] string) 🔗

Write text message to standard error terminal or syslog. You can specify the log level as first parameter.

Example of usage:

    log("just some text message\n");

25. next_branches() 🔗

Adds to the request a new destination set that includes all highest priority class contacts ('q' value based) from the serialized branches (see serialize_branches()). If called from a route block, it rewrites the request uri with first contact and adds the remaining contacts as parallel branches. If called from failure route block, adds all contacts as parallel branches. All used contacts are removes the serialized branches.

Returns true if at least one contact was added for the request's destination set - returns 1 if other branches are still pending and return 2 if no other branches are left for future processing - shortly, if 2: this is the last branch, if 1: other will follow. False is return is nothing was done (no more serialized branches).

Example of usage:

    next_branches();

26. prefix(str) 🔗

Add the string parameter in front of username in R-URI.

Parameters:

  • str (string)

Example of usage:

    prefix("00");

27. pv_printf(pv, fmt_str) 🔗

Prints the formatted string 'fmt_str' in the AVP 'pv'. The 'fmt_str' parameter can include any pseudo-variable defined in OpenSIPS. The 'pv' can be any writable pseudo-variable -- e.g.,: AVPs, VARs, $ru, $rU, $rd, $du, $br, $fs.

Parameters:

  • pv (var)
  • string (string)

Example of usage:

    pv_printf($var(x), "r-uri: $ru");
    pv_printf($avp(i:3), "from uri: $fu");

28. raise_event(event, [attrs], [vals]) 🔗

Raises from script an event through OpenSIPS Event Interface.

This function triggers an event for all subscribers for that event, regardless the transport module used.

Parameters:

  • event (string) - the name of the event which should be raised
  • attrs (var, optional) - AVP containing the the names of the attributes; if this parameter is missing and vals is provided, the attributes will be written as array(positional) params in the JSON-RPC payload
  • vals (var, optional) - AVP containing values attached to the event; if this parameter is missing, the raised event will not have any attributes, even if the attrs parameter is provided.

Example of usage (raises an event with no attributes):

raise_event("E_NO_PARAM");

Example of usage (raises an event with two attributes):

$avp(attr-name) = "param1";
$avp(attr-name) = "param2";
$avp(attr-val) = 1;
$avp(attr-val) = "2";
raise_event("E_TWO_PARAMS", $avp(attr-name), $avp(attr-val));

Example of usage (raises an event with two unnamed attributes):

$avp(attr-val) = 1;
$avp(attr-val) = "2";
raise_event("E_TWO_PARAMS", , $avp(attr-val));

29. remove_branch(branch_idx) 🔗

Removes a given branch. Once a branch is removed, all the subsequent branches are shifted (i.e. if branch n is removed, then the old n+1 branch becomes the new n branch, the old n+2 branch becomes n+1 and so on).

Parameters:

  • branch_idx (int)

Example of usage (remove all branches with URI hostname "127.0.0.1"):

$var(i) = 0;
while ($(branch(uri)[$var(i)]) != null) {
   xlog("L_INFO","$$(branch(uri)[$var(i)])=[$(branch(uri)[$var(i)])]\n");
   if ($(branch(uri)[$var(i)]{uri.host}) == "127.0.0.1") {
       xlog("L_INFO","removing branch $var(i) with URI=[$(branch(uri)[$var(i)])]\n");
       remove_branch($var(i));
   } else {
       $var(i) = $var(i) + 1;
   }
}

30. return(int) 🔗

The return() function allows you to return any integer value from a called route() block. You can test the value returned by a route using "$retcode" variable.

return(0) is same as "exit()";

In bool expressions:

  * Negative and ZERO is FALSE
  * Positive is TRUE

Example usage:

route {
  if (route(2)) {
    xlog("L_NOTICE","method $rm is INVITE\n");
  } else {
    xlog("L_NOTICE","method $rm is REGISTER\n");
  };
}
route[2] {
  if (is_method("INVITE")) {
    return(1);
  } else if (is_method("REGISTER")) {
    return(-1);
  } else {
    return(0);
  };
}

31. resetdsturi() 🔗

Set the value of dst_uri filed to NULL. dst_uri field is usually set after loose_route() or lookup("location") if the contact address is behind a NAT.

Example of usage:

    resetdsturi();

32. resetflag(flag) 🔗

Reset a flag for currently processed message (unset its value).

For more see Flags Documentation.

Parameters:

  • flags (string, static)

Example of usage:

    resetflag("NAT_PING");

33. resetbflag(flag, [branch_idx]) 🔗

Reset a flag for a specific branch (unset its value). "branch_idx" identifies the branch for which the flag is reset - it must be a positive number. Branch index 0 refers to the RURI branch. If this parameter is missing, 0 branch index is used as default.

Parameters:

  • flag (string, static)
  • branch_idx (int, optional)

For more about script flags, see Flags Documentation.

Example of usage:

    resetbflag(1, "NAT_PING");
    # or
    resetbflag("NAT_PING"); # same as resetbflag(0, "NAT_PING")

34. revert_uri() 🔗

Set the R-URI to the value of the R-URI as it was when the request was received by server (undo all changes of R-URI).

Example of usage:

    revert_uri();

35. sethost(host) 🔗

Rewrite the domain part of the R-URI with the value of function's parameter. Other parts of the R-URI like username, port and URI parameters remain unchanged.

Parameters:

  • host (string)

Note that the rewritehost alias for this function has been removed.

Example of usage:

    sethost("1.3.2.4");

36. sethostport(hostport) 🔗

Rewrite the domain part and port of the R-URI with the value of function's parameter. Other parts of the R-URI like username and URI parameters remain unchanged.

Parameters:

  • hostport (string)

Note that the rewritehostport alias for this function has been removed.

Example of usage:

    sethostport("1.3.2.4:5080");

37. setuser(user) 🔗

Rewrite the user part of the R-URI with the value of function's parameter.

Parameters:

  • user (string)

Note that the rewriteuser alias for this function has been removed.

Example of usage:

    setuser("newuser");

38. setuserpass(pass) 🔗

Rewrite the password part of the R-URI with the value of function's parameter.

Parameters:

  • pass (string)

Note that the rewriteuserpass alias for this function has been removed.

Example of usage:

    setuserpass("my_secret_passwd");

39. setport(port) 🔗

Rewrites/sets the port part of the R-URI with the value of function's parameter.

Parameters:

  • port (string)

Note that the rewriteport alias for this function has been removed.

Example of usage:

    setport("5070");

40. seturi(str) 🔗

Rewrite the request URI.

Parameters:

  • uri (string)

Note that the rewriteuri alias for this function has been removed.

Example of usage:

    seturi("sip:test@opensips.org");

# route

41.  route(name [, param1 [, param2 [, ...] ] ] ) 🔗

This function is used to run the code from the 'name' route, declared in the script. Optionally, it can receive several parameters (up to 7), that can be later retrieved using the '$param(idx)' pseudo-variable.

The name of the route is an identifier format, whereas the parameters can be either int, string, or a pseudo-variable.

Example of usage:

   route(HANDLE_SEQUENTIALS);
   route(HANDLE_SEQUENTIALS, 1, "param", $var(param));

# script_trace

42.  script_trace([log_level, pv_format_string, [info]]) 🔗

This function start the script tracing - this helps to better understand the flow of execution in the OpenSIPS script, like what function is executed, what line it is, etc. Moreover, you can also trace the values of pseudo-variables, as script execution progresses.

The blocks of the script where script tracing is enabled will print a line for each individual action that is done (e.g. assignments, conditional tests, module functions, core functions, etc.). Multiple pseudo-variables can be monitored by specifying a pv_format_string (e.g. "$ru---$avp(var1)").

The logs produced by multiple/different traced regions of your script can be differentiated (tagged) by specifying an additional plain string - info_string - as the 3rd parameter.

To disable script tracing, just do script_trace(). Otherwise, the tracing will automatically stop at the end the end of the top route.

Parameters:

  • log_level (int, optional)
  • pv_format_string (string, optional)
  • info (string, static, optional)

Example of usage:

    script_trace( 1, "$rm from $si, ruri=$ru", "me");

will produce:

    [line 578][me][module consume_credentials] -> (INVITE from 127.0.0.1 , ruri=sip:111211@opensips.org)
    [line 581][me][core setbflag] -> (INVITE from 127.0.0.1 , ruri=sip:111211@opensips.org)
    [line 583][me][assign equal] -> (INVITE from 127.0.0.1 , ruri=sip:111211@opensips.org)
    [line 592][me][core if] -> (INVITE from 127.0.0.1 , ruri=sip:tester@opensips.org)
    [line 585][me][module is_avp_set] -> (INVITE from 127.0.0.1 , ruri=sip:tester@opensips.org)
    [line 589][me][core if] -> (INVITE from 127.0.0.1 , ruri=sip:tester@opensips.org)
    [line 586][me][module is_method] -> (INVITE from 127.0.0.1 , ruri=sip:tester@opensips.org)
    [line 587][me][module trace_dialog] -> (INVITE 127.0.0.1 , ruri=sip:tester@opensips.org)
    [line 590][me][core setflag] -> (INVITE from 127.0.0.1 , ruri=sip:tester@opensips.org) 

43. send(destination [, headers]) 🔗

Send the original SIP message to a specific destination in stateless mode. This is definied as [proto:]host[:port]. No changes are applied to received message, no Via header is added, unless headers parameter is specified. Host can be an IP or hostname; supported protocols are UDP, TCP and TLS. (For TLS, you need to compile the TLS support into core). If proto or port are not specified, NAPTR and SRV lookups will be used to determine them (if possible). The headers parameter should end in '\r\n'.

Parameters:

  • destination (string)
  • headers (string, optional)

Example of usage:

   send("udp:10.10.10.10:5070");
   send("udp:10.10.10.10:5070", "Server: opensips\r\n");

44. serialize_branches(clear_previous[, keep_order]) 🔗

Takes all currently added branches for parallel forking (e.g. with lookup() or append_branch()), as well as the current branch: (R-URI ($ru) / outbound Proxy ($du) / q value ($ru_q) / branch flags / forced Path headers / forced send socket), and prepares them for serial forking instead. The ordering is done in decreasing "q" order. The serialized branches are internally stored in the "$avp(serial_branch)" AVP - this allows them to be manipulated by the "next_branches()" function, usually within a failure route.


NOTE that (according to RFC3261), the branches with the same "q" value will still be parallel forked during a certain step in the serial forking (it will result a combination of serial with parallel forking). In other words, this function will clear all added branches and keep re-adding them as long as they have identical highest "q" values, while throwing all other "lower-than-highest q" branches in the "$avp(serial_branch)". A similar grouping process takes place during each "next_branches()" function call.


NOTE that this function is not altering the current branch (R-URI, outbound proxy, etc.) - it is just preparing a serial forking set with the above-mentioned branches. You may need to call "next_branches()" immediately after calling this function, see the example below.

Parameters:

  • clear_previous (int) - if set to non-zero, all previous results of another "serialize_branches()" (serial forking set which is no longer needed) will be deleted before starting a new set
  • keep_order (int, optional) - if set to non-zero, the added branches as well as the current branch, will be serialized exactly in the order in which they are found.

Example of usage:

    if (!lookup("location")) {
        t_reply("480", "Temporarily Unavailable");
        exit;
    }

    serialize_branches(1);
    next_branches(); # Pop the R-URI from the serialized branches set

45. set_advertised_address(adv_addr) 🔗

Same as 'advertised_address' but it affects only the current message. It has priority if 'advertised_address' is also set.

Parameters:

  • adv_addr (string)

Example of usage:

    set_advertised_address("opensips.org");

46. set_advertised_port(adv_port) 🔗

Same as 'advertised_port' but it affects only the current message. It has priority over 'advertised_port'.

Parameters:

  • adv_port (string)

Example of usage:

    set_advertised_port("5080");

47. setdsturi(uri) 🔗

Explicitely set the dst_uri field to the value of the paramater. The parameter has to be a valid SIP URI.

Parameters:

  • uri (string)

Example of usage:

    setdsturi("sip:10.10.10.10:5090");

48. setflag(flag) 🔗

Set a flag for currently processed message. The flags are used to mark the message for special processing (e.g. pinging NAT'ed contacts, TCP connect behavior, etc.) or to keep some state (e.g. message authenticated). The OpenSIPS script supports, at most, 32 unique string flags.

Parameters:

  • flag (string, static)

Example of usage:

    setflag("NAT_PING");

49. setbflag(flag, [branch_idx]) 🔗

Set a flag for a specific branch. "branch_idx" identifies the branch for which the flag is set - it must be a positive number. Branch index 0 refers to the RURI branch. If this parameter is missing, 0 branch index is used as default. The OpenSIPS script supports, at most, 32 unique string branch flags.

For more about script flags, see Flags Documentation.

Parameters:

  • flag (string, static)
  • branch_idx (int, optional)

Example of usage:

    setbflag(1, "NAT_PING");
    # or
    setbflag("NAT_PING"); # same as setbflag(0, "NAT_PING")

50. strip(n) 🔗

Strip the first N-th characters from username of R-URI (N is the value of the parameter).

Parameters:

  • n (int)

Example of usage:

    strip(3);

51. strip_tail(n) 🔗

Strip the last N-th characters from username of R-URI (N is the value of the parameter).

Parameters:

  • n (int)

Example of usage:

  strip_tail(3);

52. subscribe_event(string, string [, int]) 🔗

Subscribes an external application for a certain event for the OpenSIPS Event Interface. This is used for transport protocols that cannot subscribe by themselves (example event_rabbitmq). This function should be called only once in the startup_route if the subscription doesn't expire, or in a timer route if the subscription should be renewed once in a while.

Parameters:

  • event (string) - the name of the event an external application should be notified for.
  • socket (string) - the socket of the external application. Note that this socket should follow the syntax of an existing loaded Event Interface transport module (example: event_datagram, event_rabbitmq).
  • expire (int, optional) - the expire time of the subscription. If it is not present, then the subscription does not expire at all.

Example of usage (subscriber that never expires, notified by the RabbitMQ module):

startup_route {
    subscribe_event("E_PIKE_BLOCKED", "rabbitmq:127.0.0.1/pike");
}

Example of usage (subscriber expires every 5 seconds, notified through UDP):

timer_route[event_subscribe, 4] {
    subscribe_event("E_PIKE_BLOCKED", "udp:127.0.0.1:5051", 5);
}

53. use_blacklist(bl_name) 🔗

Enables the DNS blacklist name received as parameter. Its primary purposes will be to prevent sending requests to critical IPs (like GWs) due DNS or to avoid sending to destinations that are known to be unavailable (temporary or permanent).

Parameters:

  • bl_name (string)
    use_blacklist("pstn-gws");

54. unuse_blacklist(bl_name) 🔗

Disables the DNS blacklist name received as parameter.

Parameters:

  • bl_name (string)
    unuse_blacklist("pstn-gws");

55. xlog([log_level, ]format_string) 🔗

Allows various debugging / runtime / critical messages to be printed as the execution of the OpenSIPS script is done. All pseudo-variables included in the format_string parameter will be expanded. There are several optional logging levels which can be specified. They work in accordance with the severity levels of syslog. The levels are named as follows:

  • L_ALERT (-3)
  • L_CRIT (-2)
  • L_ERR (-1) - this is used by default if log_level is omitted
  • L_WARN (1)
  • L_NOTICE (2)
  • L_INFO (3)
  • L_DBG (4)


    # a few xlog scripting examples
    xlog("Received $rm from $fu (callid: $ci)\n");
    xlog("L_ERR", "key $var(username) not found in cache!\n");

Page last modified on December 17, 2021, at 07:38 PM