2020-02-23 20:02:01 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// \file protocol_names.h
|
|
|
|
/// \brief Names of websocket protocol.
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2020-06-16 21:57:41 +00:00
|
|
|
#ifndef WFP_PROTOCOL_NAMES_H
|
|
|
|
#define WFP_PROTOCOL_NAMES_H
|
2020-02-23 20:02:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2020-06-16 21:57:41 +00:00
|
|
|
/// \def WFP_PROTOCOL_NAME_ADAPTER_SERVER
|
2020-02-23 20:02:01 +00:00
|
|
|
/// \brief Name of the websocket protocol an adapter server is running.
|
|
|
|
//------------------------------------------------------------------------------
|
2020-06-16 21:57:41 +00:00
|
|
|
#define WFP_PROTOCOL_NAME_ADAPTER_SERVER ("webfuse-adapter-server")
|
2020-02-23 20:02:01 +00:00
|
|
|
|
2020-06-11 16:07:42 +00:00
|
|
|
//------------------------------------------------------------------------------
|
2020-06-16 21:57:41 +00:00
|
|
|
/// \def WFP_PROTOCOL_NAME_ADAPTER_CLIENT
|
2020-06-11 16:07:42 +00:00
|
|
|
/// \brief Name of the websocket protocol an adapter client is running.
|
|
|
|
//------------------------------------------------------------------------------
|
2020-06-16 21:57:41 +00:00
|
|
|
#define WFP_PROTOCOL_NAME_ADAPTER_CLIENT ("webfuse-adapter-client")
|
2020-06-11 16:07:42 +00:00
|
|
|
|
2020-02-23 20:02:01 +00:00
|
|
|
//------------------------------------------------------------------------------
|
2020-06-16 21:57:41 +00:00
|
|
|
/// \def WFP_PROTOCOL_NAME_PROVIDER_CLIENT
|
2020-02-23 20:02:01 +00:00
|
|
|
/// \brief Name of the websocket protocol an provider client is running.
|
|
|
|
//------------------------------------------------------------------------------
|
2020-06-16 21:57:41 +00:00
|
|
|
#define WFP_PROTOCOL_NAME_PROVIDER_CLIENT ("webfuse-provider-client")
|
2020-02-23 20:02:01 +00:00
|
|
|
|
2020-06-11 16:07:42 +00:00
|
|
|
//------------------------------------------------------------------------------
|
2020-06-16 21:57:41 +00:00
|
|
|
/// \def WFP_PROTOCOL_NAME_PROVIDER_SERVER
|
2020-06-11 16:07:42 +00:00
|
|
|
/// \brief Name of the websocket protocol an provider server is running.
|
|
|
|
//------------------------------------------------------------------------------
|
2020-06-16 21:57:41 +00:00
|
|
|
#define WFP_PROTOCOL_NAME_PROVIDER_SERVER ("webfuse-provider-server")
|
2020-06-11 16:07:42 +00:00
|
|
|
|
2020-02-23 20:02:01 +00:00
|
|
|
#endif
|