加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
connection.go 826 Bytes
一键复制 编辑 原始数据 按行查看 历史
shallot 提交于 2020-04-05 10:41 . 添加SDP协议的内容解析。
package sdp
import (
"errors"
"strings"
)
// 连接数据,可以是会话级别,也可以是媒体级别
type Connection struct {
NetworkType string // 网络类型
AddressType string // 地址类型
Address string // 连接地址
}
func parseConnection(str string) (item Connection, err error) {
item = Connection{}
err = item.parse(str)
return
}
// 字符串表达
func (c Connection) String() string {
arr := []string{
c.NetworkType,
c.AddressType,
c.Address,
}
return strings.Join(arr, seperator)
}
// 从文本中读取内容
func (c *Connection) parse(str string) (err error) {
parts := strings.Split(str, seperator)
if len(parts) != 3 {
err = errors.New("sdp: connection is format error")
return
}
c.NetworkType = parts[0]
c.AddressType = parts[1]
c.Address = parts[2]
return
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化