mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralfms.git
synced 2026-01-27 10:23:12 +00:00
22 lines
678 B
C++
22 lines
678 B
C++
//
|
|
// Created by stephane bourque on 2022-10-25.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace OpenWifi {
|
|
|
|
static const std::string uSERVICE_SECURITY{"owsec"};
|
|
static const std::string uSERVICE_GATEWAY{"owgw"};
|
|
static const std::string uSERVICE_FIRMWARE{"owfms"};
|
|
static const std::string uSERVICE_TOPOLOGY{"owtopo"};
|
|
static const std::string uSERVICE_PROVISIONING{"owprov"};
|
|
static const std::string uSERVICE_OWLS{"owls"};
|
|
static const std::string uSERVICE_SUBCRIBER{"owsub"};
|
|
static const std::string uSERVICE_INSTALLER{"owinst"};
|
|
static const std::string uSERVICE_ANALYTICS{"owanalytics"};
|
|
static const std::string uSERVICE_OWRRM{"owrrm"};
|
|
|
|
} // namespace OpenWifi
|