mikroSDK Reference Manual
web_socket_auth.h
Go to the documentation of this file.
1
31#ifndef _WEB_SOCKET_AUTH_H
32#define _WEB_SOCKET_AUTH_H
33
34//Dependencies
35#include "core/net.h"
37
38//C++ guard
39#ifdef __cplusplus
40extern "C" {
41#endif
42
43//WebSocket related functions
44error_t webSocketParseAuthenticateField(WebSocket *webSocket, char_t *value);
45
46size_t webSocketAddAuthorizationField(WebSocket *webSocket, char_t *output);
47
48void webSocketConvertArrayToHexString(const uint8_t *input,
49 size_t inputLen, char_t *output);
50
51//C++ guard
52#ifdef __cplusplus
53}
54#endif
55
56#endif
error_t
Error codes.
Definition error.h:43
TCP/IP stack core.
WebSocket API (client and server)