Documentation

Documentation.Script-Routes-3-6 History

Hide minor edits - Show changes to output

June 10, 2024, at 05:40 PM by razvancrainea -
Added lines 54-67:
A route can return a set of values, that can later be retrieved from the route's calling context using the [[https://www.opensips.org/Documentation/Script-CoreVar-3-6#return|$return]] variable.

Example of passing values:
[@
route {
route(query);
xlog("Query returned id $return(0) with $return(1) values\n");
}
route[query] {
# perform a query for information and store the information in $var(id) and $var(values)
return(1, $var(id), $var(values));
}
@]
Note that the first parameter of the return is always the return code, and cannot be retrieved using the $return() variable.
December 17, 2021, at 07:51 PM by 109.99.227.30 -
Changed lines 19-20 from:
!!!!route
to:
[[#route]]
!!!!route [[#route|🔗]]
Changed lines 56-57 from:
!!!!branch_route
to:
[[#branch_route]]
!!!!branch_route [[#branch_route|🔗]]
Changed lines 90-91 from:
!!!!failure_route
to:
[[#failure_route]]
!!!!failure_route [[#failure_route|🔗]]
Changed lines 128-130 from:
!!!!onreply_route

to:
[[#onreply_route]]
!!!!onreply_route [[#onreply_route|🔗]]

Changed lines 192-193 from:
!!!!error_route
to:
[[#error_route]]
!!!!error_route [[#error_route|🔗]]
Changed lines 227-228 from:
!!!!local_route
to:
[[#local_route]]
!!!!local_route [[#local_route|🔗]]
Changed lines 255-256 from:
!!!!startup_route
to:
[[#startup_route]]
!!!!startup_route [[#startup_route|🔗]]
Changed lines 273-274 from:
!!!!timer_route
to:
[[#timer_route]]
!!!!timer_route [[#timer_route|🔗]]
Changed lines 292-293 from:
!!!! event_route
to:
[[# event_route]]
!!!! event_route [[# event_route|🔗]]
Deleted lines 309-315:
[[#comment1]](:nl:)>>messagehead<<
!!!!![[~Miguel Oyarzo]] &mdash; [-05 December 2015, 05:31-]
>>messageitem<<
You guys should add some graphs to explain better the routing processes, specially for SIP replies. Great works anyway.
>><<

(:commentboxchrono:)
December 17, 2021, at 07:27 PM by 109.99.227.30 -
Changed line 140 from:
* '''global''' - it catches all replies received by OpenSIPS and does not need any special arming (simple definition is enough) - named 'onreply_route {...}' or 'onreply_route[0] {...}'.
to:
* '''global''' - it catches all replies received by OpenSIPS and does not need any special arming (simple definition is enough) - named 'onreply_route {...}' or 'onreply_route[0] {...}'. NOTE: this route is not SIP transaction aware (the reply was not matched to the transaction), so no transactional data is available here.
August 12, 2021, at 04:48 PM by 109.99.227.30 -
Added lines 191-192:

IMPORTANT: as this is triggered ONLY for SIP request, OpenSIPS has to be able to correctly parse the first line of the SIP message. So any syntax error in the first line will NOT trigger this route (as OpenSIPS will not be able to tell if a reply or request).
May 20, 2021, at 03:46 PM by razvancrainea -
Changed lines 283-284 from:
The '''event_route''' is used by the OpenSIPS Event Interface to execute script code when an event is triggered. The name of the route is the event that has to be handled by that route. Since version 3.6 the event handling way can be specified from route definition as will be shown in the example below. If no way to handle the event specified, default will be synchronously. The keywords that can be used are sync and async.
to:
The '''event_route''' is used by the OpenSIPS Event Interface to execute script code when an event is triggered. The name of the route is the event that has to be handled by that route. The route itself is executed asynchronously with regards to the trigger moment.
Deleted lines 294-299:
xlog("The E_PIKE_BLOCKED event was raised\n");
}
@]

[@
event_route[E_PIKE_BLOCKED, async] {
April 01, 2021, at 08:23 AM by liviu -
Changed line 268 from:
'''Triggered by''' : The time keeper worker process.
to:
'''Triggered by''' : The ''timer'' worker process.
April 01, 2021, at 08:16 AM by liviu -
Changed line 266 from:
The '''timer_route''' is a route executed periodically at a configured interval of time specified next to the name (in seconds). Similar to ''startup_route'', this route does not process a SIP message. Multiple timer routes (possibly at different running intervals) are allowed.
to:
The '''timer_route''' is a route executed periodically at a configured interval of time specified next to the name (in seconds). Similar to ''startup_route'', this route does not process a SIP message. Multiple timer routes (possibly at differing running intervals) are allowed.
April 01, 2021, at 08:16 AM by liviu -
Changed lines 266-270 from:
The '''timer_route''' is as the name suggests, a route executed periodically at a configured interval of time specified next to the name(in seconds). The same as the startup_route, this route does not process a message. Multiple timer routes (possibly at different running intervals) are allowed.

'''Triggered by''' : The time keeper.

'''Processing''' : Functions that do refresh actions.
to:
The '''timer_route''' is a route executed periodically at a configured interval of time specified next to the name (in seconds). Similar to ''startup_route'', this route does not process a SIP message. Multiple timer routes (possibly at different running intervals) are allowed.

'''Triggered by''' : The time keeper worker process.

'''Processing''' : Functions that do periodic, recurring processing.
April 01, 2021, at 08:12 AM by liviu -
Changed lines 266-267 from:
The '''timer_route''' is as the name suggests, a route executed periodically at a configured interval of time specified next to the name(in seconds). The same as the startup_route, this route does not process a message. You can defined more timer routes.
to:
The '''timer_route''' is as the name suggests, a route executed periodically at a configured interval of time specified next to the name(in seconds). The same as the startup_route, this route does not process a message. Multiple timer routes (possibly at different running intervals) are allowed.
April 01, 2021, at 08:10 AM by liviu -
Changed line 273 from:
%red%NOTE%%: when OpenSIPS starts, each timer_route is first executed '''after <interval>''' seconds!
to:
%red%NOTE%%: when OpenSIPS starts, each timer_route is '''first executed after <interval>''' seconds!
April 01, 2021, at 08:10 AM by liviu -
Added line 273:
%red%NOTE%%: when OpenSIPS starts, each timer_route is first executed '''after <interval>''' seconds!
May 27, 2020, at 04:39 PM by liviu -
Changed line 40 from:
sl_send_reply("200", "ok");
to:
sl_send_reply(200, "OK");
Changed line 75 from:
sl_send_reply("500", "relaying failed");
to:
sl_send_reply(500, "Internal Server Error");
Changed line 112 from:
sl_send_reply("500", "relaying failed");
to:
sl_send_reply(500, "Internal Server Error");
July 17, 2017, at 05:49 PM by rvlad_patrascu -
Changed line 79 from:
if(uri=~"10\.10\.10\.10") {
to:
if($ru=~"10\.10\.10\.10") {
December 05, 2015, at 06:31 AM by Miguel Oyarzo - Comment added
Added lines 304-309:

[[#comment1]](:nl:)>>messagehead<<
!!!!![[~Miguel Oyarzo]] &mdash; [-05 December 2015, 05:31-]
>>messageitem<<
You guys should add some graphs to explain better the routing processes, specially for SIP replies. Great works anyway.
>><<
March 18, 2015, at 11:13 AM by razvancrainea -
Changed lines 283-285 from:
The '''event_route''' is used by the OpenSIPS Event Interface to execute script code when an event is triggered. The name of the route is the event that has to be handled by that route. Since version 1.12 the event handling way can be specified from route definition as will be shown in the example below. If no way to handle the event specified, default will be synchronously. The keywords that can be used are sync and async.

'''Triggered by''' : the [[http://www.opensips.org/html/docs/modules/1.12.x/event_route | event_route ]] module when an event raised by the OpenSIPS Event Interface
to:
The '''event_route''' is used by the OpenSIPS Event Interface to execute script code when an event is triggered. The name of the route is the event that has to be handled by that route. Since version 3.6 the event handling way can be specified from route definition as will be shown in the example below. If no way to handle the event specified, default will be synchronously. The keywords that can be used are sync and async.

'''Triggered by''' : the [[http://www.opensips.org/html/docs/modules/3.6.x/event_route | event_route ]] module when an event raised by the OpenSIPS Event Interface
March 13, 2015, at 06:55 PM by liviu -
Changed line 190 from:
The error route is executed automatically when a parsing error occurrs during SIP request processing, or when a script [[ http://www.opensips.org/Documentation/Script-CoreFunctions-3-6#toc2 | assert ]] fails. It allows the administrator to decide what to do in such error cases.
to:
The error route is executed automatically when a parsing error occurs during SIP request processing, or when a script [[ http://www.opensips.org/Documentation/Script-CoreFunctions-3-6#toc2 | assert ]] fails. It allows the administrator to decide what to do in such error cases.
March 13, 2015, at 06:55 PM by liviu -
Changed line 190 from:
The error route is executed automatically when a parsing error occurred during SIP request processing. This allow the administrator to decide what to do in case of error.
to:
The error route is executed automatically when a parsing error occurrs during SIP request processing, or when a script [[ http://www.opensips.org/Documentation/Script-CoreFunctions-3-6#toc2 | assert ]] fails. It allows the administrator to decide what to do in such error cases.
October 02, 2014, at 03:10 PM by ionutionita92 -
Changed lines 283-284 from:
The '''event_route''' is used by the OpenSIPS Event Interface to execute script code when an event is triggered. The name of the route is the event that has to be handled by that route. Since version 1.12 the event handling way can be specified from route definition as will be shown in the example below. If no way to handle the event specified, default will be synchronously. The keywords that can be used are "sync" and "async".
to:
The '''event_route''' is used by the OpenSIPS Event Interface to execute script code when an event is triggered. The name of the route is the event that has to be handled by that route. Since version 1.12 the event handling way can be specified from route definition as will be shown in the example below. If no way to handle the event specified, default will be synchronously. The keywords that can be used are sync and async.
Changed line 300 from:
event_route[E_PIKE_BLOCKED, "async"] {
to:
event_route[E_PIKE_BLOCKED, async] {
October 01, 2014, at 04:17 PM by ionutionita92 -
Changed lines 283-284 from:
The '''event_route''' is used by the OpenSIPS Event Interface to execute script code when an event is triggered. The name of the route is the event that has to be handled by that route.
to:
The '''event_route''' is used by the OpenSIPS Event Interface to execute script code when an event is triggered. The name of the route is the event that has to be handled by that route. Since version 1.12 the event handling way can be specified from route definition as will be shown in the example below. If no way to handle the event specified, default will be synchronously. The keywords that can be used are "sync" and "async".
Added lines 295-300:
xlog("The E_PIKE_BLOCKED event was raised\n");
}
@]

[@
event_route[E_PIKE_BLOCKED, "async"] {

Page last modified on June 10, 2024, at 05:40 PM