Merge pull request #10642 from kb2ma/nanocoap/fix_nanocoap_sock_includes

net/nanocoap: fix includes for nanocoap sock
This commit is contained in:
Sebastian Meiling 2018-12-20 08:38:03 +01:00 committed by GitHub
commit fa38f05574
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 3 deletions

View File

@ -19,9 +19,7 @@
#include <stdio.h>
#include "net/nanocoap.h"
#include "net/nanocoap_sock.h"
#include "xtimer.h"
#define COAP_INBUF_SIZE (256U)

View File

@ -23,6 +23,7 @@
#include <stdint.h>
#include <unistd.h>
#include "net/nanocoap.h"
#include "net/sock/udp.h"
#ifdef __cplusplus

View File

@ -22,7 +22,7 @@
#include <string.h>
#include <stdio.h>
#include "net/nanocoap.h"
#include "net/nanocoap_sock.h"
#include "net/sock/udp.h"
#define ENABLE_DEBUG (0)