...
|
...
|
@@ -62,13 +62,30 @@ config script changes:
|
62
|
62
|
- support for kamailio style pvars
|
63
|
63
|
- C-like switch()/case (integer only)
|
64
|
64
|
- while()
|
|
65
|
+ - include file support: include_file "somefile"
|
|
66
|
+ - event route support: event_route[module_name:eventid]
|
|
67
|
+
|
65
|
68
|
build system:
|
66
|
69
|
- multiple modules directories are now supported (defined in Makefile.dirs)
|
67
|
70
|
|
68
|
71
|
new config variables:
|
69
|
72
|
- max_while_loops - maximum iterations allowed for a while (can be changed
|
70
|
73
|
at runtime). Default 100.
|
|
74
|
+ - log_name - set the application name used when printing to syslog.
|
71
|
75
|
|
|
76
|
+new script commands:
|
|
77
|
+ add_local_rport() - adds the rport parameter to the added via header
|
|
78
|
+ (rfc3581).
|
|
79
|
+ set_forward_no_connect() - the message will be forwarded only if there is
|
|
80
|
+ already an existing connection to the destination (it applies only to
|
|
81
|
+ connection oriented protocols like tcp, tls and in the future sctp).
|
|
82
|
+ set_reply_no_connect() - like set_forward_no_connect(), but works for
|
|
83
|
+ replies to the current message.
|
|
84
|
+ set_forward_close() - try to close the connection after forwarding the
|
|
85
|
+ current message (it applies only when the underlying protocol is
|
|
86
|
+ connection oriented).
|
|
87
|
+ set_reply_close() - like set_forward_close(), but it works for replies to
|
|
88
|
+ the current message.
|
72
|
89
|
|
73
|
90
|
|
74
|
91
|
|