Commit e5b6c43c authored by chen2022's avatar chen2022

修复v1/uemsg接口

parent dc4e7d18
......@@ -34,8 +34,8 @@ void SmfToDataApiImpl::uemsg_get_am_data(
for (std::list<UeMsg>::iterator it = UeMsgList.begin(); it != UeMsgList.end(); it++)
{
//std::cout << "ueip " << (*it).ueip << " imsi " << it->imsi << " timestamp: " << it->timestamp << std::endl;
json_array[i]["imsi"] = (*it).ueip;
json_array[i]["ueip"] = it->imsi;
json_array[i]["imsi"] = it->imsi;
json_array[i]["ueip"] = (*it).ueip;
json_array[i]["timestamp"] = it->timestamp;
i++;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment