Yes We Can / yeswecancoap

Dependencies:   DebugLib EthernetInterface cantcoap mbed-rtos

Dependents:   COAP coap

Fork of yeswecancoap by Sille Van Landschoot

Committer:
sillevl
Date:
Wed Oct 21 08:51:38 2015 +0000
Revision:
6:0c477f5b79ff
Parent:
5:1924c60356d0
Child:
7:1bed29e1b0a4
polymophic request and responses

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sillevl 1:ab04e3d36ade 1 #pragma once
sillevl 1:ab04e3d36ade 2
sillevl 5:1924c60356d0 3 #include "cantcoap.h"
sillevl 5:1924c60356d0 4
sillevl 6:0c477f5b79ff 5 class Request : protected CoapPDU
sillevl 5:1924c60356d0 6 {
sillevl 1:ab04e3d36ade 7 public:
sillevl 3:e03960f91763 8 Request();
sillevl 5:1924c60356d0 9 Request(uint8_t *pdu, int pduLength);
sillevl 5:1924c60356d0 10 Request(uint8_t *buffer, int bufferLength, int pduLength);
sillevl 3:e03960f91763 11
sillevl 1:ab04e3d36ade 12 };