Documentation |
Documentation.Script-Routes-3-6 HistoryHide minor edits - Show changes to markup June 10, 2024, at 05:40 PM
by
- 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 $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
- Changed lines 19-20 from:
routeto:
route 🔗Changed lines 56-57 from:
branch_routeto:
branch_route 🔗Changed lines 90-91 from:
failure_routeto:
failure_route 🔗Changed lines 128-130 from:
onreply_routeto:
onreply_route 🔗Changed lines 192-193 from:
error_routeto:
error_route 🔗Changed lines 227-228 from:
local_routeto:
local_route 🔗Changed lines 255-256 from:
startup_routeto:
startup_route 🔗Changed lines 273-274 from:
timer_routeto:
timer_route 🔗Changed lines 292-293 from:
event_routeto:
event_route 🔗Deleted lines 309-315:
December 17, 2021, at 07:27 PM
by
- Changed line 140 from:
to:
August 12, 2021, at 04:48 PM
by
- 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
- 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
- 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
- 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
- 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
- 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
- Changed line 273 from:
NOTE: when OpenSIPS starts, each timer_route is first executed after <interval> seconds! to:
NOTE: when OpenSIPS starts, each timer_route is first executed after <interval> seconds! April 01, 2021, at 08:10 AM
by
- Added line 273:
NOTE: when OpenSIPS starts, each timer_route is first executed after <interval> seconds! May 27, 2020, at 04:39 PM
by
- 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
- 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
- Comment addedAdded lines 304-309:
(:nl:)>>messagehead<< Miguel Oyarzo? — 05 December 2015, 05:31March 18, 2015, at 11:13 AM
by
- 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 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 event_route module when an event raised by the OpenSIPS Event Interface March 13, 2015, at 06:55 PM
by
- Changed line 190 from:
The error route is executed automatically when a parsing error occurrs during SIP request processing, or when a script 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 assert fails. It allows the administrator to decide what to do in such error cases. March 13, 2015, at 06:55 PM
by
- 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 assert fails. It allows the administrator to decide what to do in such error cases. October 02, 2014, at 03:10 PM
by
- 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
- 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"] { |