本文整理汇总了C++中Msg::get_id方法的典型用法代码示例。如果您正苦于以下问题:C++ Msg::get_id方法的具体用法?C++ Msg::get_id怎么用?C++ Msg::get_id使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Msg
的用法示例。
在下文中一共展示了Msg::get_id方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: send_assoc_answer
void Casan::send_assoc_answer (Msg &in, Msg &out)
{
l2addr *dest ;
dest = l2_->get_src () ;
// send back an acknowledgement message
out.set_type (COAP_TYPE_ACK) ;
out.set_code (COAP_CODE_OK) ;
out.set_id (in.get_id ()) ;
// will get the resources and set them in the payload in the right format
(void) get_well_known (out) ;
// send the packet
if (! out.send (*dest))
DBGLN1 (F (RED ("Cannot send the assoc answer message"))) ;
delete dest ;
}
示例2: loop
//.........这里部分代码省略.........
}
break ;
case SL_RUNNING :
case SL_RENEW :
if (ret == l2net::RECV_OK)
{
retrans_.check_msg_received (in) ;
if (is_ctl_msg (in))
{
if (is_hello (in, hlid))
{
DBGLN1 (F ("Received a CTL HELLO msg")) ;
if (! same_master (srcaddr) || hlid != hlid_)
{
int oldhlid = hlid_ ;
change_master (hlid, 0) ; // reset mtu
if (oldhlid != -1)
{
twait_.init (curtime) ;
status_ = SL_WAITING_KNOWN ;
}
}
}
else if (is_assoc (in, sttl_, mtu))
{
DBGLN1 (F ("Received a CTL ASSOC msg")) ;
if (same_master (srcaddr))
{
negociate_mtu (mtu) ;
send_assoc_answer (in, out) ;
trenew_.init (curtime, sttl_) ;
status_ = SL_RUNNING ;
}
}
else DBGLN1 (F (RED ("Unkwnon CTL"))) ;
}
else // request for a normal resource
{
// deduplicate () ;
process_request (in, out) ;
out.send (*master_) ;
}
}
else if (ret == l2net::RECV_TRUNCATED)
{
DBGLN1 (F (RED ("Request too large"))) ;
out.set_type (COAP_TYPE_ACK) ;
out.set_id (in.get_id ()) ;
out.set_token (in.get_token ()) ;
option o (option::MO_Size1, l2_->mtu ()) ;
out.push_option (o) ;
out.set_code (COAP_CODE_TOO_LARGE) ;
out.send (*master_) ;
}
check_observed_resources (out) ;
if (status_ == SL_RUNNING && trenew_.renew (curtime))
{
send_discover (out) ;
status_ = SL_RENEW ;
}
if (status_ == SL_RENEW && trenew_.next (curtime))
{
send_discover (out) ;
}
if (status_ == SL_RENEW && trenew_.expired (curtime))
{
reset_master () ; // master_ is no longer known
send_discover (out) ;
twait_.init (curtime) ; // reset timer
status_ = SL_WAITING_UNKNOWN ;
}
break ;
default :
DBGLN1 (F ("Error : casan status not known")) ;
DBGLN1 (status_) ;
break ;
}
if (oldstatus != status_)
{
DBG1 (F ("Status: " C_GREEN)) ;
print_status (oldstatus) ;
DBG1 (F (C_RESET " -> " C_GREEN)) ;
print_status (status_) ;
DBGLN1 (F (C_RESET)) ;
}
if (srcaddr != NULL)
delete srcaddr ;
}
示例3: process_request
void Casan::process_request (Msg &in, Msg &out)
{
option *o ;
bool rfound = false ; // resource found
in.reset_next_option () ;
for (o = in.next_option () ; o != NULL ; o = in.next_option ())
{
if (o->optcode () == option::MO_Uri_Path)
{
// request for all resources
if (o->optlen () == (int) (sizeof CASAN_RESOURCES_ALL - 1)
&& memcmp (o->optval ((int *) 0), CASAN_RESOURCES_ALL,
sizeof CASAN_RESOURCES_ALL - 1) == 0)
{
rfound = true ;
out.set_type (COAP_TYPE_ACK) ;
out.set_id (in.get_id ()) ;
out.set_token (in.get_token ()) ;
out.set_code (COAP_CODE_OK) ;
(void) get_well_known (out) ;
}
else
{
Resource *res ;
// we benefit from the added '\0' at the end of an option
res = get_resource ((char *) o->optval ((int *) 0)) ;
if (res != NULL)
{
option *obs ;
uint32_t obsval ;
rfound = true ;
obs = in.search_option (option::MO_Observe) ;
if (obs != NULL)
obsval = obs->optval () ;
if (obs != NULL && obsval == 0)
res->observed (true, &in) ;
else
res->observed (false, NULL) ;
out.set_type (COAP_TYPE_ACK) ;
out.set_id (in.get_id ()) ;
out.set_token (in.get_token ()) ;
if (obs != NULL && obsval == 0)
{
option robs (option::MO_Observe, res->next_serial ()) ;
out.push_option (robs) ;
}
request_resource (&in, &out, res) ;
}
}
break ;
}
}
if (! rfound)
{
out.set_type (COAP_TYPE_ACK) ;
out.set_id (in.get_id ()) ;
out.set_token (in.get_token ()) ;
out.set_code (COAP_CODE_NOT_FOUND) ;
}
}