tcp server 用于给andriod 客户端定时发送消息
fix
liuxiaolong
2019-11-01 609cde4c5f1f125461578b2cc0c1f098c1ae2a1a
fix
1个文件已修改
12 ■■■■■ 已修改文件
extend/config/config.go 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
extend/config/config.go
@@ -1,10 +1,8 @@
package config
import (
    "log"
    "strconv"
    "github.com/spf13/viper"
    "log"
)
type server []ServerInfo
@@ -12,9 +10,9 @@
type ServerInfo struct {
    ServerId string `mapstructure: "serverId"`
    ServerIp string `mapstructure: "serverIp"`
    VideoPort int   `mapstructure: "videoPort"`
    VideoPort string   `mapstructure: "videoPort"`
    NginxIp string  `mapstructure: "ngxIp"`
    NginxPort int   `mapstructure: "ngxPort"`
    NginxPort string   `mapstructure: "ngxPort"`
}
var serverList = &server{}
@@ -32,7 +30,7 @@
    }
    viper.UnmarshalKey("server", serverList)
    for _,s :=range *serverList {
        ServerMap[s.ServerId] = "http://"+s.ServerIp+":"+strconv.Itoa(s.VideoPort)+"/getRecordVideoPath"
        NgxMap[s.ServerId] = "http://"+s.NginxIp+":"+strconv.Itoa(s.NginxPort)+"/videosource"
        ServerMap[s.ServerId] = "http://"+s.ServerIp+":"+s.VideoPort+"/getRecordVideoPath"
        NgxMap[s.ServerId] = "http://"+s.NginxIp+":"+s.NginxPort+"/videosource"
    }
}