examples/gcoap: adapt to gcoap_send() API changes
This commit is contained in:
parent
3fd8357071
commit
de777f7655
@ -145,7 +145,8 @@ static void _resp_handler(const gcoap_request_memo_t *memo, coap_pkt_t* pdu,
|
|||||||
block.blknum++;
|
block.blknum++;
|
||||||
coap_opt_add_block2_control(pdu, &block);
|
coap_opt_add_block2_control(pdu, &block);
|
||||||
int len = coap_opt_finish(pdu, COAP_OPT_FINISH_NONE);
|
int len = coap_opt_finish(pdu, COAP_OPT_FINISH_NONE);
|
||||||
gcoap_req_send((uint8_t *)pdu->hdr, len, remote, _resp_handler);
|
gcoap_req_send((uint8_t *)pdu->hdr, len, remote,
|
||||||
|
_resp_handler, memo->context);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
puts("--- blockwise complete ---");
|
puts("--- blockwise complete ---");
|
||||||
@ -258,7 +259,7 @@ static size_t _send(uint8_t *buf, size_t len, char *addr_str, char *port_str)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
bytes_sent = gcoap_req_send(buf, len, &remote, _resp_handler);
|
bytes_sent = gcoap_req_send(buf, len, &remote, _resp_handler, NULL);
|
||||||
if (bytes_sent > 0) {
|
if (bytes_sent > 0) {
|
||||||
req_count++;
|
req_count++;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user