1 Star 0 Fork 16

王国平/SIP协议

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
expires.go 674 Bytes
一键复制 编辑 原始数据 按行查看 历史
package sip
import (
"fmt"
"strconv"
)
// 消息或内容过期时间
type Expires struct {
value *int // 实际的值
}
func parseExpires(str string) (item Expires, err error) {
expires, err := strconv.Atoi(str)
if err != nil {
return
}
item = Expires{
value: &expires,
}
return
}
// Set函数
func (e *Expires) SetValue(v *int) {
e.value = v
}
// Get函数
func (e Expires) GetValue() *int {
return e.value
}
// 是否是注销请求
func (e Expires) IsRequestLogOut() bool {
return e.value != nil && *(e.value) == 0
}
// 字符串表达
func (e Expires) String() string {
if e.value == nil {
return ""
}
return fmt.Sprintf("%d", *(e.value))
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/wang_guo_ping/sip.git
git@gitee.com:wang_guo_ping/sip.git
wang_guo_ping
sip
SIP协议
master

搜索帮助