资源简介
linux下对coap服务器和客户端的仿真程序,适合初学者理解coap协议

代码片段和文件信息
/* async.c -- state management for asynchronous messages
*
* Copyright (C) 20102011 Olaf Bergmann
*
* This file is part of the CoAP library libcoap. Please see
* README for terms of use.
*/
/**
* @file async.c
* @brief state management for asynchronous messages
*/
#ifndef WITHOUT_ASYNC
#include “config.h“
#include “utlist.h“
#include “mem.h“
#include “debug.h“
#include “async.h“
coap_async_state_t *
coap_register_async(coap_context_t *context coap_address_t *peer
coap_pdu_t *request unsigned char flags void *data) {
coap_async_state_t *s;
coap_opt_iterator_t opt_iter;
coap_tid_t id;
coap_transaction_id(peer request &id);
LL_SEARCH_SCALAR(context->async_statesidid);
if (s != NULL) {
/* We must return NULL here as the caller must know that he is
* responsible for releasing @p data. */
debug(“asynchronous state for transaction %d already registered\n“ id);
return NULL;
}
/* store information for handling the asynchronous task */
s = (coap_async_state_t *)coap_malloc(sizeof(coap_async_state_t) +
request->hdr->token_length);
if (!s) {
coap_log(LOG_CRIT “coap_register_async: insufficient memory\n“);
return NULL;
}
memset(s 0 sizeof(coap_async_state_t) + request->hdr->token_length);
/* set COAP_ASYNC_CONFIRM according to request‘s type */
s->flags = flags & ~COAP_ASYNC_CONFIRM;
if (request->hdr->type == COAP_MESSAGE_CON)
s->flags |= COAP_ASYNC_CONFIRM;
s->appdata = data;
memcpy(&s->peer peer sizeof(coap_address_t));
if (request->hdr->token_length) {
s->tokenlen = request->hdr->token_length;
memcpy(s->token request->hdr->token request->hdr->token_length);
}
memcpy(&s->id &id sizeof(coap_tid_t));
coap_touch_async(s);
LL_PREPEND(context->async_state s);
return s;
}
coap_async_state_t *
coap_find_async(coap_context_t *context coap_tid_t id) {
coap_async_state_t *tmp;
LL_SEARCH_SCALAR(context->async_statetmpidid);
return tmp;
}
int
coap_remove_async(coap_context_t *context coap_tid_t id
coap_async_state_t **s) {
coap_async_state_t *tmp = coap_find_async(context id);
if (tmp)
LL_DELETE(context->async_statetmp);
*s = tmp;
return tmp != NULL;
}
void
coap_free_async(coap_async_state_t *s) {
if (s && (s->flags & COAP_ASYNC_RELEASE_DATA) != 0)
coap_free(s->appdata);
coap_free(s);
}
#else
void does_not_exist(); /* make some compilers happy */
#endif /* WITHOUT_ASYNC */
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-02-26 00:28 libcoap-4.0.1\
文件 2968 2013-01-24 23:57 libcoap-4.0.1\ChangeLog
文件 1315 2013-01-24 23:57 libcoap-4.0.1\LICENSE.BSD
文件 15220 2013-01-24 23:57 libcoap-4.0.1\LICENSE.GPL
文件 2020 2013-01-24 23:57 libcoap-4.0.1\Makefile.in
文件 1010 2013-01-24 23:57 libcoap-4.0.1\README
文件 3510 2013-01-24 23:57 libcoap-4.0.1\address.h
文件 2508 2013-01-24 23:57 libcoap-4.0.1\async.c
文件 5172 2013-01-24 23:57 libcoap-4.0.1\async.h
文件 2024 2013-01-24 23:57 libcoap-4.0.1\bits.h
文件 2923 2013-01-24 23:57 libcoap-4.0.1\block.c
文件 4451 2013-01-24 23:57 libcoap-4.0.1\block.h
文件 535 2013-01-24 23:57 libcoap-4.0.1\coap.h
文件 1671 2013-01-24 23:57 libcoap-4.0.1\coap_list.c
文件 1294 2013-01-24 23:57 libcoap-4.0.1\coap_list.h
文件 1850 2013-01-24 23:57 libcoap-4.0.1\coap_time.h
文件 3714 2013-01-24 23:57 libcoap-4.0.1\config.h
文件 3482 2013-01-24 23:57 libcoap-4.0.1\config.h.in
文件 154909 2013-01-24 23:57 libcoap-4.0.1\configure
文件 2522 2013-01-24 23:57 libcoap-4.0.1\configure.in
文件 8420 2013-01-24 23:57 libcoap-4.0.1\debug.c
文件 1651 2013-01-24 23:57 libcoap-4.0.1\debug.h
目录 0 2013-02-26 00:28 libcoap-4.0.1\doc\
文件 65441 2013-01-24 23:57 libcoap-4.0.1\doc\Doxyfile.in
文件 1253 2013-01-24 23:57 libcoap-4.0.1\doc\Makefile.in
目录 0 2013-02-26 00:28 libcoap-4.0.1\doc\html\
文件 17884 2013-01-24 23:57 libcoap-4.0.1\doc\html\address_8h.html
文件 26461 2013-01-24 23:57 libcoap-4.0.1\doc\html\address_8h_source.html
文件 13245 2013-01-24 23:57 libcoap-4.0.1\doc\html\annotated.html
文件 9854 2013-01-24 23:57 libcoap-4.0.1\doc\html\async_8c.html
文件 25804 2013-01-24 23:57 libcoap-4.0.1\doc\html\async_8c_source.html
............此处省略99个文件信息
相关资源
- silicon lab公司的收音IC SI47XX全套开发工
- PESQ C源代码
- 哲学家进餐问题 算法 vc源代码 测试通
- MP4编解C源代码
- gcoapa.rar
- USB摄像头图像采集VC源代码
- prosac源代码
- glibc内存管理ptmalloc源代码分析
- 一个完整的心电检测系统文档硬件,
- 中国象棋和五子棋的算法讲解和vc源代
- 猫里奥c源代码内含整体代码与批处理
- NB-iot(bc28模组程序)
- 拼图游戏c源代码附程序.zip
- coap源码CSharp
- cocoapi-master.zip
- 智能温控风扇控制设计51单片机原理;
- VdhcoAppSetup1.5.0.zip Video DownloadHelper Co
- VdhCoAppSetup-1.2.2.exe
- 海思HI35xx平台串口操作C源代码及参考
- BC28模块对接电信平台,或者对接私有
- VdhCoAppSetup-1.3.0.zip
- MPC-HC播放器源代码
- 时间触发嵌入式系统设计模式---文档
- STM32F10X 仿三菱PLC源代码
- Video DownloadHelper的合作安装应用vdhCo
- mac net.downloadhelper.coapp-1.3.0.zip
- VdhCoAppSetup-1.6.0.exe
- Video DownloadHelper Companion App ( VdhCoAp
- 密码学-应用密码学:协议、算法与
- 力软敏捷开发框架专业版7.0_C源代码
评论
共有 条评论