Yes We Can / yeswecancoap

Dependencies:   DebugLib EthernetInterface cantcoap mbed-rtos

Dependents:   COAP coap

Fork of yeswecancoap by Sille Van Landschoot

request.h

Committer:
sillevl
Date:
2015-10-20
Revision:
3:e03960f91763
Parent:
1:ab04e3d36ade
Child:
5:1924c60356d0

File content as of revision 3:e03960f91763:

#pragma once

class Request{
    
    public:
    Request();
    void respond(char*, int size);
    
    char* getPayload();
    int getPayLoadSize();
    
    private:
    char* payload;
    int payloadSize;
};