当前位置: 首页>>代码示例>>C++>>正文


C++ Msg::get_type方法代码示例

本文整理汇总了C++中Msg::get_type方法的典型用法代码示例。如果您正苦于以下问题:C++ Msg::get_type方法的具体用法?C++ Msg::get_type怎么用?C++ Msg::get_type使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Msg的用法示例。


在下文中一共展示了Msg::get_type方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: check_msg_received

void Retrans::check_msg_received (Msg &in) 
{
    switch (in.get_type ())
    {
	case COAP_TYPE_ACK :
	    del (&in) ;
	    break ;
	default :
	    break ;
    }
}
开发者ID:Alpam,项目名称:casan,代码行数:11,代码来源:retrans.cpp

示例2: check_msg_sent

void Retrans::check_msg_sent (Msg &in) 
{
    switch (in.get_type ())
    {
	case COAP_TYPE_CON :
	    add (&in) ;
	    break ;
	default :
	    break ;
    }
}
开发者ID:Alpam,项目名称:casan,代码行数:11,代码来源:retrans.cpp

示例3: is_hello

bool Casan::is_hello (Msg &m, long int &hlid)
{
    bool found = false ;

    // a hello msg is NON POST
    if (m.get_type () == COAP_TYPE_NON && m.get_code () == COAP_CODE_POST)
    {
	m.reset_next_option () ;
	for (option *o = m.next_option () ; o != NULL ; o = m.next_option ())
	{
	    if (o->optcode () == option::MO_Uri_Query)
	    {
		// we benefit from the added nul byte at the end of val
		if (sscanf ((const char *) o->optval ((int *) 0), CASAN_HELLO, &hlid) == 1)
		    found = true ;
	    }
	}
    }

    return found ;
}
开发者ID:Alpam,项目名称:casan,代码行数:21,代码来源:casan.cpp

示例4: is_assoc

bool Casan::is_assoc (Msg &m, time_t &sttl, int &mtu)
{
    bool found_ttl = false ;
    bool found_mtu = false ;

    if (m.get_type () == COAP_TYPE_CON && m.get_code () == COAP_CODE_POST)
    {
	m.reset_next_option () ;
	for (option *o = m.next_option () ; o != NULL ; o = m.next_option ())
	{
	    if (o->optcode () == option::MO_Uri_Query)
	    {
		long int n ;		// sscanf "%ld" waits for a long int

		// we benefit from the added nul byte at the end of val
		if (sscanf ((const char *) o->optval ((int *) 0), CASAN_ASSOC_TTL, &n) == 1)
		{
		    DBG1 (BLUE ("TTL recv: ")) ;
		    DBG1 (n) ;
		    DBGLN0 () ;
		    sttl = ((time_t) n) * 1000 ;
		    found_ttl = true ;
		    // continue, just in case there are other query strings
		}
		else if (sscanf ((const char *) o->optval ((int *) 0), CASAN_ASSOC_MTU, &n) == 1)
		{
		    DBG1 (BLUE ("MTU recv: ")) ;
		    DBG1 (n) ;
		    DBGLN0 () ;
		    mtu = n ;
		    found_mtu = true ;
		    // continue, just in case there are other query strings
		}
		else break ;
	    }
	}
    }

    return found_ttl && found_mtu ;
}
开发者ID:Alpam,项目名称:casan,代码行数:40,代码来源:casan.cpp


注:本文中的Msg::get_type方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。