Home
last modified time | relevance | path

Searched refs:COAP_RXBUFFER_SIZE (Results 1 – 10 of 10) sorted by relevance

/third_party/libcoap/examples/contiki/
Dcoap_config.h24 #ifndef COAP_RXBUFFER_SIZE
25 #define COAP_RXBUFFER_SIZE 64 macro
153 #undef COAP_RXBUFFER_SIZE
155 #define COAP_RXBUFFER_SIZE 100 macro
169 #undef COAP_RXBUFFER_SIZE
171 #define COAP_RXBUFFER_SIZE 1472 macro
180 #undef COAP_RXBUFFER_SIZE
182 #define COAP_RXBUFFER_SIZE 100 macro
/third_party/libcoap/
Dcoap_config.h.contiki24 #ifndef COAP_RXBUFFER_SIZE
25 #define COAP_RXBUFFER_SIZE 64
26 #endif /* COAP_RXBUFFER_SIZE */
153 #undef COAP_RXBUFFER_SIZE
155 #define COAP_RXBUFFER_SIZE 100
169 #undef COAP_RXBUFFER_SIZE
171 #define COAP_RXBUFFER_SIZE 1472
180 #undef COAP_RXBUFFER_SIZE
182 #define COAP_RXBUFFER_SIZE 100
/third_party/libcoap/include/coap3/
Dcoap_io.h23 #ifndef COAP_RXBUFFER_SIZE
24 #define COAP_RXBUFFER_SIZE 1472 macro
Dcoap_io_internal.h165 unsigned char payload[COAP_RXBUFFER_SIZE]; /**< payload */
/third_party/libcoap/src/
Dcoap_io_riot.c105 if (len > COAP_RXBUFFER_SIZE) { in coap_network_read()
107 len = COAP_RXBUFFER_SIZE; in coap_network_read()
Dcoap_io.c852 len = recv(sock->fd, (char *)packet->payload, COAP_RXBUFFER_SIZE, 0);
854 len = recv(sock->fd, packet->payload, COAP_RXBUFFER_SIZE, 0);
886 iov[0].iov_len = (iov_len_t)COAP_RXBUFFER_SIZE;
922 len = recvfrom(sock->fd, packet->payload, COAP_RXBUFFER_SIZE, 0,
1037 if (len > COAP_RXBUFFER_SIZE) {
1065 len = recvfrom (sock->fd, packet->payload, COAP_RXBUFFER_SIZE,
Dmem.c381 #define COAP_MAX_PACKET_SIZE (sizeof(coap_packet_t) + COAP_RXBUFFER_SIZE)
Dcoap_mbedtls.c1733 static uint8_t pdu[COAP_RXBUFFER_SIZE]; in coap_dtls_receive()
1735 uint8_t pdu[COAP_RXBUFFER_SIZE]; in coap_dtls_receive()
Dcoap_gnutls.c2409 uint8_t pdu[COAP_RXBUFFER_SIZE]; in coap_dtls_receive()
Dcoap_openssl.c3055 uint8_t pdu[COAP_RXBUFFER_SIZE]; in coap_dtls_receive()