We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f0d7c3 commit c191fdeCopy full SHA for c191fde
source/include/coap_server_impl.h
@@ -0,0 +1,30 @@
1
+/*
2
+ * Copyright (c) 2015 ARM. All rights reserved.
3
+ */
4
+
5
6
+ * \file -
7
+ * \brief Platform specifig implementation file
8
+ *
9
10
11
+#ifndef COAP_SERVER_IMPL_H_
12
+#define COAP_SERVER_IMPL_H_
13
14
+#include "ns_types.h"
15
+#include "eventOS_event.h"
16
+#include "coap_service_api.h"
17
18
+int8_t coap_server_start(void);
19
20
+void *memory_allocation(uint16_t size);
21
22
+void memory_free(void* ptr);
23
24
+static int8_t coap_server_service_tasklet_generated(void);
25
26
+void coap_server_service_tasklet(arm_event_s * event);
27
28
+uint16_t socket_open(uint16_t listen_port, coap_service_request_recv_cb *requst_recv_cb);
29
30
+#endif /* COAP_SERVER_IMPL_H_ */
0 commit comments