mirror of
https://github.com/pvvx/RTL00_WEB.git
synced 2024-11-23 06:24:19 +00:00
18 lines
549 B
C
18 lines
549 B
C
|
#ifndef _WEB_WEBSOCKET_H_
|
||
|
/******************************************************************************
|
||
|
* FileName: web_websocket.h
|
||
|
* Description: websocket for web ESP8266
|
||
|
* Author: PV`
|
||
|
* (c) PV` 2016
|
||
|
*******************************************************************************/
|
||
|
#define _WEB_WEBSOCKET_H_
|
||
|
#include "user_config.h"
|
||
|
#ifdef WEBSOCKET_ENA
|
||
|
#include "websock.h"
|
||
|
|
||
|
err_t websock_tx_close_err(TCP_SERV_CONN *ts_conn, uint32 err);
|
||
|
bool websock_rx_data(TCP_SERV_CONN *ts_conn);
|
||
|
|
||
|
#endif // WEBSOCKET_ENA
|
||
|
#endif /* _WEB_WEBSOCKET_H_ */
|