From 659d1d5d9e3f93bb5970645ada2cdf7cc133b963 Mon Sep 17 00:00:00 2001 From: Radu Ioan Fericean Date: Mon, 25 Mar 2013 12:54:06 +0200 Subject: [PATCH] copyright ITsysCOM --- cmd/cgr-console/cgr-console.go | 2 +- cmd/cgr-loader/cgr-loader.go | 2 +- cmd/cgr-rater/cgr-rater.go | 10 +++++----- cmd/cgr-rater/rater_test.go | 2 +- cmd/cgr-rater/registration.go | 2 +- cmd/stress/cgr-raterstress/cgr-raterstress.go | 2 +- cmd/stress/cgr-spansstress/cgr-spansstress.go | 2 +- importer.go | 2 +- mediator/mediator.go | 2 +- rater/accountlock.go | 2 +- rater/accountlock_test.go | 2 +- rater/action.go | 2 +- rater/action_timing.go | 2 +- rater/action_trigger.go | 2 +- rater/actions_test.go | 2 +- rater/activationperiod.go | 2 +- rater/activationperiod_test.go | 2 +- rater/callcost.go | 2 +- rater/callcost_test.go | 2 +- rater/calldesc.go | 10 +++++----- rater/calldesc_test.go | 2 +- rater/csvreader.go | 2 +- rater/csvreader_helpers.go | 2 +- rater/csvreader_test.go | 2 +- rater/dateseries.go | 2 +- rater/dateseries_test.go | 2 +- rater/destinations.go | 2 +- rater/destinations_test.go | 2 +- rater/interval.go | 2 +- rater/interval_test.go | 2 +- rater/logger.go | 2 +- rater/minute_buckets.go | 2 +- rater/minute_buckets_test.go | 2 +- rater/ratingprofile.go | 2 +- rater/ratingprofile_test.go | 2 +- rater/responder.go | 2 +- rater/storage_interface.go | 2 +- rater/storage_map.go | 2 +- rater/storage_mongo.go | 2 +- rater/storage_postgres.go | 2 +- rater/storage_redis.go | 2 +- rater/timespans.go | 2 +- rater/timespans_test.go | 2 +- rater/units_counter.go | 2 +- rater/units_counter_test.go | 2 +- rater/userbalance.go | 2 +- rater/userbalance_test.go | 2 +- scheduler/scheduler.go | 2 +- sessionmanager/event.go | 2 +- sessionmanager/fsevent.go | 2 +- sessionmanager/fsevent_test.go | 2 +- sessionmanager/fssessionmanager.go | 2 +- sessionmanager/fssessionmanager_test.go | 2 +- sessionmanager/session.go | 2 +- sessionmanager/session_test.go | 2 +- sessionmanager/sessionmanager.go | 2 +- 56 files changed, 64 insertions(+), 64 deletions(-) diff --git a/cmd/cgr-console/cgr-console.go b/cmd/cgr-console/cgr-console.go index 717ad1fe6..a18f6a270 100644 --- a/cmd/cgr-console/cgr-console.go +++ b/cmd/cgr-console/cgr-console.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/cmd/cgr-loader/cgr-loader.go b/cmd/cgr-loader/cgr-loader.go index e151c9814..8cf8f0d14 100644 --- a/cmd/cgr-loader/cgr-loader.go +++ b/cmd/cgr-loader/cgr-loader.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/cmd/cgr-rater/cgr-rater.go b/cmd/cgr-rater/cgr-rater.go index cf6b19997..eaf7159df 100644 --- a/cmd/cgr-rater/cgr-rater.go +++ b/cmd/cgr-rater/cgr-rater.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 @@ -73,7 +73,7 @@ var ( rater_rpc_encoding = GOB // use JSON for RPC encoding balancer_enabled = false - balancer_listen = "127.0.0.1:2001" // Json RPC server address + balancer_listen = "127.0.0.1:2001" // Json RPC server address balancer_rpc_encoding = GOB // use JSON for RPC encoding scheduler_enabled = false @@ -87,13 +87,13 @@ var ( mediator_enabled = false mediator_cdr_path = "" // Freeswitch Master CSV CDR path. mediator_cdr_out_path = "" // Freeswitch Master CSV CDR output path. - mediator_rater = INTERNAL // address where to access rater. Can be internal, direct rater address or the address of a balancer + mediator_rater = INTERNAL // address where to access rater. Can be internal, direct rater address or the address of a balancer mediator_rpc_encoding = GOB // use JSON for RPC encoding mediator_skipdb = false mediator_pseudo_prepaid = false freeswitch_server = "localhost:8021" // freeswitch address host:port - freeswitch_pass = "ClueCon" // reeswitch address host:port + freeswitch_pass = "ClueCon" // reeswitch address host:port freeswitch_direction = "" freeswitch_tor = "" freeswitch_tenant = "" @@ -275,7 +275,7 @@ func checkConfigSanity() { exitChan <- true } - // check if the session manager or mediator is connectting via loopback + // check if the session manager or mediator is connectting via loopback // if they are using the same encoding as the rater/balancer // this scenariou should be used for debug puropses only (it is racy anyway) // and it might be forbidden in the future diff --git a/cmd/cgr-rater/rater_test.go b/cmd/cgr-rater/rater_test.go index 7379558ab..58afc207b 100644 --- a/cmd/cgr-rater/rater_test.go +++ b/cmd/cgr-rater/rater_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/cmd/cgr-rater/registration.go b/cmd/cgr-rater/registration.go index a6e420d4e..a008eecbf 100644 --- a/cmd/cgr-rater/registration.go +++ b/cmd/cgr-rater/registration.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/cmd/stress/cgr-raterstress/cgr-raterstress.go b/cmd/stress/cgr-raterstress/cgr-raterstress.go index 829810532..959ba7c8b 100644 --- a/cmd/stress/cgr-raterstress/cgr-raterstress.go +++ b/cmd/stress/cgr-raterstress/cgr-raterstress.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/cmd/stress/cgr-spansstress/cgr-spansstress.go b/cmd/stress/cgr-spansstress/cgr-spansstress.go index e67bea8da..89feef2b9 100644 --- a/cmd/stress/cgr-spansstress/cgr-spansstress.go +++ b/cmd/stress/cgr-spansstress/cgr-spansstress.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/importer.go b/importer.go index fc99c0f90..3ffcbdf0f 100644 --- a/importer.go +++ b/importer.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/mediator/mediator.go b/mediator/mediator.go index 53844470f..72389a96d 100644 --- a/mediator/mediator.go +++ b/mediator/mediator.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/accountlock.go b/rater/accountlock.go index abd9666e2..21759ec9b 100644 --- a/rater/accountlock.go +++ b/rater/accountlock.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/accountlock_test.go b/rater/accountlock_test.go index ad6c590c2..e9974df94 100644 --- a/rater/accountlock_test.go +++ b/rater/accountlock_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/action.go b/rater/action.go index 18e60b061..df35b599d 100644 --- a/rater/action.go +++ b/rater/action.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/action_timing.go b/rater/action_timing.go index 5f3b8e9b2..d38f4e56e 100644 --- a/rater/action_timing.go +++ b/rater/action_timing.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/action_trigger.go b/rater/action_trigger.go index 32e2ab24c..27fd6b5c1 100644 --- a/rater/action_trigger.go +++ b/rater/action_trigger.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/actions_test.go b/rater/actions_test.go index b3a000598..729023415 100644 --- a/rater/actions_test.go +++ b/rater/actions_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/activationperiod.go b/rater/activationperiod.go index 3c229f2ab..c9bd0a714 100644 --- a/rater/activationperiod.go +++ b/rater/activationperiod.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/activationperiod_test.go b/rater/activationperiod_test.go index c27b33ea0..66c82586a 100644 --- a/rater/activationperiod_test.go +++ b/rater/activationperiod_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/callcost.go b/rater/callcost.go index 635e0e7d1..12326bd9b 100644 --- a/rater/callcost.go +++ b/rater/callcost.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/callcost_test.go b/rater/callcost_test.go index 94bcd2049..3c67feee8 100644 --- a/rater/callcost_test.go +++ b/rater/callcost_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/calldesc.go b/rater/calldesc.go index e62cfe561..2b5255b63 100644 --- a/rater/calldesc.go +++ b/rater/calldesc.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 @@ -190,7 +190,7 @@ Splits the received timespan into sub time spans according to the activation per */ func (cd *CallDescriptor) splitTimeSpan(firstSpan *TimeSpan) (timespans []*TimeSpan) { timespans = append(timespans, firstSpan) - // split on (free) minute buckets + // split on (free) minute buckets if userBalance, err := cd.getUserBalance(); err == nil && userBalance != nil { _, _, bucketList := userBalance.getSecondsForPrefix(cd.Destination) for _, mb := range bucketList { @@ -287,10 +287,10 @@ func (cd *CallDescriptor) GetCost() (*CallCost, error) { } /* -Returns the approximate max allowed session for user balance. It will try the max amount received in the call descriptor +Returns the approximate max allowed session for user balance. It will try the max amount received in the call descriptor and will decrease it by 10% for nine times. So if the user has little credit it will still allow 10% of the initial amount. If the user has no credit then it will return 0. -If the user has postpayied plan it returns -1. +If the user has postpayied plan it returns -1. */ func (cd *CallDescriptor) GetMaxSessionTime() (seconds float64, err error) { _, err = cd.LoadActivationPeriods() @@ -312,7 +312,7 @@ func (cd *CallDescriptor) GetMaxSessionTime() (seconds float64, err error) { Logger.Err(fmt.Sprintf("Could not get user balance for %s.", cd.GetUserBalanceKey())) return cd.Amount, err } - // check for zero balance + // check for zero balance if availableCredit == 0 { return availableSeconds, nil } diff --git a/rater/calldesc_test.go b/rater/calldesc_test.go index b75e04891..6654b9c0c 100644 --- a/rater/calldesc_test.go +++ b/rater/calldesc_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM This program is free software: you can Storagetribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/rater/csvreader.go b/rater/csvreader.go index ecde93ff3..9c8bd146c 100644 --- a/rater/csvreader.go +++ b/rater/csvreader.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/csvreader_helpers.go b/rater/csvreader_helpers.go index 38d6856ad..ed2e5b5ca 100644 --- a/rater/csvreader_helpers.go +++ b/rater/csvreader_helpers.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/csvreader_test.go b/rater/csvreader_test.go index 13717cbd7..0ea2e9bef 100644 --- a/rater/csvreader_test.go +++ b/rater/csvreader_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/dateseries.go b/rater/dateseries.go index 78b2c47a5..167eb5b97 100644 --- a/rater/dateseries.go +++ b/rater/dateseries.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/dateseries_test.go b/rater/dateseries_test.go index 531eb5efd..830ef6043 100644 --- a/rater/dateseries_test.go +++ b/rater/dateseries_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/destinations.go b/rater/destinations.go index b84b6de73..a841be14a 100644 --- a/rater/destinations.go +++ b/rater/destinations.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/destinations_test.go b/rater/destinations_test.go index 9cfff7f32..b5c7feff4 100644 --- a/rater/destinations_test.go +++ b/rater/destinations_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/interval.go b/rater/interval.go index 6e1cb6de1..f72aaae47 100644 --- a/rater/interval.go +++ b/rater/interval.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM Thresult program result free software: you can redresulttribute it and/or modify it under the terms of the GNU General Public License as publresulthed by diff --git a/rater/interval_test.go b/rater/interval_test.go index d70f77f96..adb8efa90 100644 --- a/rater/interval_test.go +++ b/rater/interval_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/logger.go b/rater/logger.go index 66f612153..c995c0ad2 100644 --- a/rater/logger.go +++ b/rater/logger.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/minute_buckets.go b/rater/minute_buckets.go index b502f6673..760739c9f 100644 --- a/rater/minute_buckets.go +++ b/rater/minute_buckets.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/minute_buckets_test.go b/rater/minute_buckets_test.go index 3b6be1fe8..7ae16173d 100644 --- a/rater/minute_buckets_test.go +++ b/rater/minute_buckets_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/ratingprofile.go b/rater/ratingprofile.go index d32462e15..ef401457d 100644 --- a/rater/ratingprofile.go +++ b/rater/ratingprofile.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/ratingprofile_test.go b/rater/ratingprofile_test.go index 03775b36e..5a329a23e 100644 --- a/rater/ratingprofile_test.go +++ b/rater/ratingprofile_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM This program is free software: you can Storagetribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/rater/responder.go b/rater/responder.go index 7aa34370f..ec3ed7d13 100644 --- a/rater/responder.go +++ b/rater/responder.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/storage_interface.go b/rater/storage_interface.go index 61e499f5d..0d8d4d250 100644 --- a/rater/storage_interface.go +++ b/rater/storage_interface.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/storage_map.go b/rater/storage_map.go index 62cf00a4e..27cb2f072 100644 --- a/rater/storage_map.go +++ b/rater/storage_map.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriems World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/storage_mongo.go b/rater/storage_mongo.go index a252b7066..c3910b6f0 100644 --- a/rater/storage_mongo.go +++ b/rater/storage_mongo.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/storage_postgres.go b/rater/storage_postgres.go index 2f5cef802..d0f5244af 100644 --- a/rater/storage_postgres.go +++ b/rater/storage_postgres.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/storage_redis.go b/rater/storage_redis.go index 2b7dd07bd..91c191970 100644 --- a/rater/storage_redis.go +++ b/rater/storage_redis.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/timespans.go b/rater/timespans.go index 130067b08..48ccfe8fa 100644 --- a/rater/timespans.go +++ b/rater/timespans.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/timespans_test.go b/rater/timespans_test.go index 73cbcc7d6..2e19e7e7a 100644 --- a/rater/timespans_test.go +++ b/rater/timespans_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/units_counter.go b/rater/units_counter.go index 1edf4c908..97180b237 100644 --- a/rater/units_counter.go +++ b/rater/units_counter.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/units_counter_test.go b/rater/units_counter_test.go index 7ab8348d3..32958dc83 100644 --- a/rater/units_counter_test.go +++ b/rater/units_counter_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/userbalance.go b/rater/userbalance.go index d0cfb533d..df4fa5319 100644 --- a/rater/userbalance.go +++ b/rater/userbalance.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/rater/userbalance_test.go b/rater/userbalance_test.go index 92d495456..ccce6ba7c 100644 --- a/rater/userbalance_test.go +++ b/rater/userbalance_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/scheduler/scheduler.go b/scheduler/scheduler.go index ee648ed72..492a28f9a 100644 --- a/scheduler/scheduler.go +++ b/scheduler/scheduler.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/sessionmanager/event.go b/sessionmanager/event.go index 8fb6458e5..935394520 100644 --- a/sessionmanager/event.go +++ b/sessionmanager/event.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/sessionmanager/fsevent.go b/sessionmanager/fsevent.go index 1dd1ad93b..6650f071f 100644 --- a/sessionmanager/fsevent.go +++ b/sessionmanager/fsevent.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/sessionmanager/fsevent_test.go b/sessionmanager/fsevent_test.go index d6c4618b5..8abc71df0 100644 --- a/sessionmanager/fsevent_test.go +++ b/sessionmanager/fsevent_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/sessionmanager/fssessionmanager.go b/sessionmanager/fssessionmanager.go index ce86d7420..7645d5bd2 100644 --- a/sessionmanager/fssessionmanager.go +++ b/sessionmanager/fssessionmanager.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/sessionmanager/fssessionmanager_test.go b/sessionmanager/fssessionmanager_test.go index 57741fed9..afb3fc1f2 100644 --- a/sessionmanager/fssessionmanager_test.go +++ b/sessionmanager/fssessionmanager_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/sessionmanager/session.go b/sessionmanager/session.go index 81e37d418..927eb11f8 100644 --- a/sessionmanager/session.go +++ b/sessionmanager/session.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/sessionmanager/session_test.go b/sessionmanager/session_test.go index 356e049cf..9891a2fdb 100644 --- a/sessionmanager/session_test.go +++ b/sessionmanager/session_test.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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 diff --git a/sessionmanager/sessionmanager.go b/sessionmanager/sessionmanager.go index 1a6b3a788..b508f44ef 100644 --- a/sessionmanager/sessionmanager.go +++ b/sessionmanager/sessionmanager.go @@ -1,6 +1,6 @@ /* Rating system designed to be used in VoIP Carriers World -Copyright (C) 2012 Radu Ioan Fericean +Copyright (C) 2013 ITsysCOM 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