2 Star 0 Fork 0

slh92 / plugin-sip

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
utils.go 1.75 KB
一键复制 编辑 原始数据 按行查看 历史
slh92 提交于 2024-04-07 18:21 . 初始化代码
package transaction
import (
"fmt"
"gitee.com/slh1992/plugin-sip/sip"
"net"
"strings"
)
//=====================================================sip message utils
//The branch ID parameter in the Via header field values serves as a transaction identifier,
//and is used by proxies to detect loops.
//The branch parameter in the topmost Via header field of the request
// is examined. If it is present and begins with the magic cookie
// "z9hG4bK", the request was generated by a client transaction
// compliant to this specification.
//参考RFC3261
func getMessageTransactionID(m *sip.Message) string {
if m.GetMethod() == sip.ACK {
//TODO:在匹配服务端事务的ACK中,创建事务的请求的方法为INVITE。所以ACK消息匹配事务的时候需要注意????
}
return string(m.GetMethod()) + "_" + m.GetBranch()
}
func checkMessage(msg *sip.Message) error {
//TODO:sip消息解析成功之后,检查必要元素,如果失败,则返回 ErrorCheckMessage
//检查头域字段:callID via startline 等
//检查seq、method等
//不可以有router?
//是否根据消息是接收还是发送检查?
if msg == nil {
return ErrorCheck
}
return nil
}
//fix via header,add send-by info,
func fixReceiveMessageViaParams(msg *sip.Message, addr net.Addr) {
rport := msg.Via.Params["rport"]
if rport == "" || rport == "0" || rport == "-1" {
arr := strings.Split(addr.String(), ":")
if len(arr) == 2 {
msg.Via.Params["rport"] = arr[1]
if msg.Via.Host != arr[0] {
msg.Via.Params["received"] = arr[0]
}
} else {
//TODO:数据报的地址错误??
fmt.Println("packet handle > invalid addr :", addr.String())
}
} else {
fmt.Println("sip message has have send-by info:", msg.Via.GetSendBy())
}
}
Go
1
https://gitee.com/slh1992/plugin-sip.git
git@gitee.com:slh1992/plugin-sip.git
slh1992
plugin-sip
plugin-sip
v1.3.9

搜索帮助