4 Star 22 Fork 8

北京小程科技有限公司/SDP协议

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
util.go 432 Bytes
一键复制 编辑 原始数据 按行查看 历史
shallot 提交于 2020-04-05 10:41 . 添加SDP协议的内容解析。
package sdp
import (
"errors"
"strings"
)
// 分隔符
const CRLF = "\r\n"
const seperator = " "
// 解析字段
func parse(str string) (key string, value string, err error) {
loc := strings.Index(str, "=")
if loc < 0 {
err = errors.New("sdp: line format error")
return
}
key = str[0:loc]
value = str[loc+1:]
return
}
// 单行输出
func output(key string, value string) string {
return key + "=" + value + CRLF
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/xiaochengtech/sdp.git
[email protected]:xiaochengtech/sdp.git
xiaochengtech
sdp
SDP协议
master

搜索帮助