首页 > 代码库 > opensips 常用的一些变量
opensips 常用的一些变量
首先要注意的是要这些变量是区分大小写的。
$ru - reference to request‘s URI
$ou - reference to request‘s original URI
$oU - reference to username in request‘s original URI
$fU - reference to username in URI of ‘From‘ header
$fu - reference to URI of ‘From‘ header
$si - reference to IP source address of the message
$rd - reference to domain in request‘s URI
更多:
http://www.opensips.org/Documentation/Script-CoreVar
常用用法:
1. 根据用户名来对主被叫做限制
if( $fU=="13100000000" && $oU == "13100000001" )
{
//do something
}
2.根据主被叫的IP来做限制
if( $si == $rd )
{
xlog("you‘re in same subnet!");
//do something
}
opensips 常用的一些变量
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。