mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
22 lines
986 B
C
22 lines
986 B
C
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
/// \file protocol_names.h
|
||
|
/// \brief Names of websocket protocol.
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
#ifndef WF_PROTOCOL_NAMES_H
|
||
|
#define WF_PROTOCOL_NAMES_H
|
||
|
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
/// \def WF_PROTOCOL_NAME_ADAPTER_SERVER
|
||
|
/// \brief Name of the websocket protocol an adapter server is running.
|
||
|
//------------------------------------------------------------------------------
|
||
|
#define WF_PROTOCOL_NAME_ADAPTER_SERVER ("webfuse-adapter-server")
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
/// \def WF_PROTOCOL_NAME_PROVIDER_CLIENT
|
||
|
/// \brief Name of the websocket protocol an provider client is running.
|
||
|
//------------------------------------------------------------------------------
|
||
|
#define WF_PROTOCOL_NAME_PROVIDER_CLIENT ("webfuse-provider-client")
|
||
|
|
||
|
#endif
|