mirror of
https://github.com/Telecominfraproject/wlan-cloud-owprov.git
synced 2025-10-29 17:52:28 +00:00
20 lines
370 B
C++
20 lines
370 B
C++
//
|
|
// Created by stephane bourque on 2022-02-22.
|
|
//
|
|
|
|
#include "Signup.h"
|
|
|
|
namespace OpenWifi {
|
|
|
|
int Signup::Start() {
|
|
GracePeriod_ = MicroService::instance().ConfigGetInt("signup.graceperiod", 60*60);
|
|
LingerPeriod_ = MicroService::instance().ConfigGetInt("signup.lingerperiod", 24*60*60);
|
|
|
|
return 0;
|
|
}
|
|
|
|
void Signup::Stop() {
|
|
|
|
}
|
|
|
|
} |