Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: DebugLib EthernetInterface cantcoap mbed-rtos
Fork of yeswecancoap by
request.h@6:0c477f5b79ff, 2015-10-21 (annotated)
- 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?
User | Revision | Line number | New 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 | }; |