Count9 #7

Merged
tygozwolle merged 20 commits from count9 into master 2026-08-03 12:17:13 +02:00
Showing only changes of commit d1b93191e1 - Show all commits
@@ -126,6 +126,24 @@ public class RadiusService : IRadiusService
Value = maxOctetsBytes.ToString() Value = maxOctetsBytes.ToString()
}); });
// Force NAS to send accounting interim-updates every 60 seconds
_db.RadReply.Add(new RadReply
{
Username = username,
Attribute = "Acct-Interim-Interval",
Op = "=",
Value = "60"
});
// Re-authenticate (instead of disconnect) when Session-Timeout fires
_db.RadReply.Add(new RadReply
{
Username = username,
Attribute = "Termination-Action",
Op = "=",
Value = "1"
});
// Create Guest Profile record // Create Guest Profile record
var profile = new GuestProfile var profile = new GuestProfile
{ {