Skip to content

Commit

Permalink
https://telecominfraproject.atlassian.net/browse/WIFI-7831
Browse files Browse the repository at this point in the history
Signed-off-by: stephb9959 <[email protected]>
  • Loading branch information
stephb9959 committed Oct 3, 2023
1 parent 8388d12 commit 48d3831
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/APConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,19 +59,26 @@ namespace OpenWifi {
}

bool APConfig::InsertRadiusEndPoint(const ProvObjects::RADIUSEndPoint &RE, Poco::JSON::Object::Ptr &Result) {
DBGLINE
if(RE.UseGWProxy) {
DBGLINE
Poco::JSON::Object ServerSettings;
if (RE.Type == "orion") {
OpenRoaming_Orion()->Render(RE, Result);
DBGLINE
return OpenRoaming_Orion()->Render(RE, Result);
} else if (RE.Type == "globalreach") {
OpenRoaming_GlobalReach()->Render(RE, Result);
DBGLINE
return OpenRoaming_GlobalReach()->Render(RE, Result);
} else if (RE.Type == "radsec") {
DBGLINE

} else if (RE.Type == "radius") {
DBGLINE

}
Result->set( "radius" , ServerSettings);
}
DBGLINE
return false;
}

Expand Down

0 comments on commit 48d3831

Please sign in to comment.