semilimes mcu sdk
1.1.5
semilimes Software Development Kit for microcontrollers
Loading...
Searching...
No Matches
websocket_header.h
1
#ifndef _websocket_header_
2
#define _websocket_header_
3
4
#include "../defines.h"
5
6
class
WebsocketHeader
7
{
8
private
:
9
SmeJson json_data;
10
char
* json =
nullptr
;
11
12
public
:
13
// Function: ~WebsocketHeader
14
15
// distructor of the class, frees up the memory occupied by the array/s
16
17
// Prototype:
18
// ~WebsocketHeader()
19
20
// Parameters:
21
22
// Returns:
24
~WebsocketHeader
()
25
{
26
delete
[] json;
27
json =
nullptr
;
28
}
29
30
// Function: WebsocketHeader.setObj
31
32
// This endpoint create the websocket header json message on which the api call is to be embedded
33
34
// Prototype:
35
// void getRequest(const char* requestId, const char* requestType, const char* body);
36
37
// Parameters:
41
42
// Returns:
44
char
*
getRequest
(
const
char
* requestId,
const
char
* requestType,
const
char
* body);
45
};
46
47
#endif
WebsocketHeader
Definition
websocket_header.h:7
WebsocketHeader::getRequest
char * getRequest(const char *requestId, const char *requestType, const char *body)
Definition
websocket_header.cpp:18
WebsocketHeader::~WebsocketHeader
~WebsocketHeader()
Definition
websocket_header.h:24
github
semilimes_mcu_sdk
src
communication
websocket_header.h
Generated by
1.12.0