Home
last modified time | relevance | path

Searched refs:coap_pdu_parse (Results 1 – 8 of 8) sorted by relevance

/net-tools-3.4.0/libcoap/tests/
Dtest_pdu.c30 result = coap_pdu_parse((unsigned char *)teststr, sizeof(teststr), pdu); in t_parse_pdu1()
47 result = coap_pdu_parse((unsigned char *)teststr, sizeof(teststr), pdu); in t_parse_pdu2()
65 result = coap_pdu_parse((unsigned char *)teststr, sizeof(teststr), pdu); in t_parse_pdu3()
76 result = coap_pdu_parse((unsigned char *)teststr, sizeof(teststr), pdu); in t_parse_pdu4()
81 result = coap_pdu_parse((unsigned char *)teststr, sizeof(teststr), pdu); in t_parse_pdu4()
93 result = coap_pdu_parse((unsigned char *)teststr, sizeof(teststr), pdu); in t_parse_pdu5()
116 result = coap_pdu_parse((unsigned char *)teststr, sizeof(teststr), pdu); in t_parse_pdu6()
129 result = coap_pdu_parse((unsigned char *)teststr, sizeof(teststr), pdu); in t_parse_pdu7()
155 result = coap_pdu_parse((unsigned char *)teststr, sizeof(teststr), pdu); in t_parse_pdu8()
177 result = coap_pdu_parse((unsigned char *)teststr, sizeof(teststr), pdu); in t_parse_pdu9()
[all …]
/net-tools-3.4.0/libcoap/
Dlibcoap-1.sym81 coap_pdu_parse
Dlibcoap-1.map83 coap_pdu_parse;
DChangeLog133 * pdu.c (coap_pdu_parse): new PDU parser for Klaus-encoding
136 * net.c (coap_read): call coap_pdu_parse() to check PDU integrity
/net-tools-3.4.0/libcoap/include/coap/
Dpdu.h325 int coap_pdu_parse(unsigned char *data,
/net-tools-3.4.0/libcoap/src/
Dpdu.c341 coap_pdu_parse(unsigned char *data, size_t length, coap_pdu_t *pdu) { in coap_pdu_parse() function
Dnet.c891 if (!coap_pdu_parse(msg, msg_len, node->pdu)) { in coap_handle_message()
/net-tools-3.4.0/
Dcoap-client.c911 if (!coap_pdu_parse((unsigned char *)buf, bytes_read, node->pdu)) { in dispatch_data()