1 Star 7 Fork 4

lena7/golang学习代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test2.cpp 523 Bytes
一键复制 编辑 原始数据 按行查看 历史
lena7 提交于 2024-12-16 11:05 . test
unsigned int ConvertAgentIdToInt(const string& strId) {
unsigned int nId = 0;
string strIp;
if (IpStringToInt(nId, strId) == 0)
return nId;
int ret = EthnetGetIpAddress(strIp, strId);
if (ret == 0 && !strIp.empty()) {
if (IpStringToInt(nId, strIp) != 0)
nId = 0;
}
else {
LogWarning("ReLoadCfg(EthnetGetIpAddress is return error, we try num of agent id, errno: %d)", ret);
nId = StringToInt(strId);
}
EthnetInfoDestroy();
return nId;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/lena7/golang-learning-code.git
git@gitee.com:lena7/golang-learning-code.git
lena7
golang-learning-code
golang学习代码
master

搜索帮助