本文整理汇总了C++中usrloc_api_t::get_all_ucontacts方法的典型用法代码示例。如果您正苦于以下问题:C++ usrloc_api_t::get_all_ucontacts方法的具体用法?C++ usrloc_api_t::get_all_ucontacts怎么用?C++ usrloc_api_t::get_all_ucontacts使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类usrloc_api_t
的用法示例。
在下文中一共展示了usrloc_api_t::get_all_ucontacts方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: sizeof
static void
natping(unsigned int ticks, void *param)
{
int rval;
void *buf, *cp;
str c;
struct dest_info dst;
buf = NULL;
if (cblen > 0) {
buf = pkg_malloc(cblen);
if (buf == NULL) {
LOG(L_ERR, "ERROR: nathelper::natping: out of memory\n");
return;
}
}
rval = ul.get_all_ucontacts(buf, cblen, (ping_nated_only ? FL_NAT : 0));
if (rval > 0) {
if (buf != NULL)
pkg_free(buf);
cblen = rval * 2;
buf = pkg_malloc(cblen);
if (buf == NULL) {
LOG(L_ERR, "ERROR: nathelper::natping: out of memory\n");
return;
}
rval = ul.get_all_ucontacts(buf, cblen, (ping_nated_only ? FL_NAT : 0));
if (rval != 0) {
pkg_free(buf);
return;
}
}
if (buf == NULL)
return;
cp = buf;
while (1) {
memcpy(&(c.len), cp, sizeof(c.len));
if (c.len == 0)
break;
c.s = (char *)cp + sizeof(c.len);
cp = (char *)cp + sizeof(c.len) + c.len;
init_dest_info(&dst);
memcpy(&dst.send_sock, cp, sizeof(dst.send_sock));
cp += sizeof(dst.send_sock);
natping_contact(c, &dst);
}
pkg_free(buf);
}