Add cli_udp.cpp to sources and remove c++11 dependencies. (#41)

This commit is contained in:
Jonathan Hui
2016-05-17 08:58:06 -07:00
parent c8908cf687
commit e9f4292be3
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -53,7 +53,7 @@ public:
* @retval kThreadError_None Successfully started the server.
*
*/
ThreadError Start(void) final;
ThreadError Start(void);
/**
* This method delivers output to the client.
@@ -64,7 +64,7 @@ public:
* @retval kThreadError_None Successfully delivered output the client.
*
*/
ThreadError Output(const char *aBuf, uint16_t aBufLength) final;
ThreadError Output(const char *aBuf, uint16_t aBufLength);
private:
static void HandleUdpReceive(void *aContext, otMessage aMessage, const otMessageInfo *aMessageInfo);