burrow-pi-img/deps/tools/rpiConfigServer_src/WebSocketHandlers.h
2018-12-14 16:36:56 -08:00

21 lines
802 B
C++

/*----------------------------------------------------------------------------*/
/* Copyright (c) 2018 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/
#ifndef RPICONFIGSERVER_WEBSOCKETHANDLERS_H_
#define RPICONFIGSERVER_WEBSOCKETHANDLERS_H_
#include <wpi/StringRef.h>
namespace wpi {
class WebSocket;
} // namespace wpi
void InitWs(wpi::WebSocket& ws);
void ProcessWsText(wpi::WebSocket& ws, wpi::StringRef msg);
#endif // RPICONFIGSERVER_WEBSOCKETHANDLERS_H_