coap-example: made endpoint static in process

This commit is contained in:
Joakim Eriksson 2018-03-05 16:35:45 +01:00
parent 64b7c5ee28
commit 66917d94af
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ client_chunk_handler(coap_message_t *response)
}
PROCESS_THREAD(er_example_client, ev, data)
{
coap_endpoint_t server_ep;
static coap_endpoint_t server_ep;
PROCESS_BEGIN();
static coap_message_t request[1]; /* This way the packet can be treated as pointer as usual. */