mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-14 12:49:54 +05:00
This commit ports the following changes from v0.11: -9991b29- Implement DisconnectSession API for RADIUS Agent -02c8ed1- Implement support for RADIUS CoA -7129d34- Merge CoA into ReAuthorize logic -d8ad760- Update both ReAuthorize API signatures -5560608- Dynamic templates for Radius CoA out of APIOpts -f9d1c0f- Refactor ReAuthorize to AlterSessions - 8388832 - Rename agents API object: SessionSv1 to AgentV1 -b580e09- Add sanity checks for radius templates -ca6a944- Update client_da_addresses structure -98265a1- Refactor function names and error msgs related to AlterSessions -ee98dbe- Update AgentV1DisconnectSession api signature -c9b6c1f- Add support for sending *dmr template via APIOpts -03eff44- Cache RADIUS packets during accounting instead of auth -28e53ce- Add requests_cache_key field to radagent cfg
29 lines
896 B
Go
29 lines
896 B
Go
/*
|
|
Real-time Online/Offline Charging System (OCS) for Telecom & ISP environments
|
|
Copyright (C) ITsysCOM GmbH
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
package agents
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/cgrates/cgrates/sessions"
|
|
)
|
|
|
|
func TestFAsSessionSClientIface(t *testing.T) {
|
|
_ = sessions.BiRPCClient(new(FSsessions))
|
|
}
|