Yes We Can / yeswecancoap

Dependencies:   DebugLib EthernetInterface cantcoap mbed-rtos

Dependents:   COAP coap

Fork of yeswecancoap by Sille Van Landschoot

Revision:
5:1924c60356d0
Parent:
3:e03960f91763
Child:
6:0c477f5b79ff
--- a/request.h	Wed Oct 21 08:10:12 2015 +0000
+++ b/request.h	Wed Oct 21 08:25:17 2015 +0000
@@ -1,15 +1,12 @@
 #pragma once
 
-class Request{
-    
+#include "cantcoap.h"
+
+class Request : public CoapPDU
+{
     public:
     Request();
-    void respond(char*, int size);
-    
-    char* getPayload();
-    int getPayLoadSize();
+    Request(uint8_t *pdu, int pduLength);
+    Request(uint8_t *buffer, int bufferLength, int pduLength);
     
-    private:
-    char* payload;
-    int payloadSize;
 };
\ No newline at end of file