mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-24 08:36:14 +01:00
10 lines
217 B
C++
10 lines
217 B
C++
#ifndef Websockets_h
|
|
#define Websockets_h
|
|
#include <Arduino.h>
|
|
#include "RingStream.h"
|
|
class Websockets {
|
|
public:
|
|
static bool checkConnectionString(byte clientId,byte * cmd, RingStream * outbound );
|
|
};
|
|
|
|
#endif |