diff --git a/callcontrol/__init__.py b/callcontrol/__init__.py index 331a052..cc8ebac 100644 --- a/callcontrol/__init__.py +++ b/callcontrol/__init__.py @@ -1,25 +1,25 @@ # Copyright (C) 2005-2010 AG-Projects. See LICENSE for details. # """SIP Callcontrol""" __version__ = "2.0.11" configuration_filename = 'config.ini' backup_calls_file = 'calls.dat' -package_requirements = {'python-application': '1.1.5'} +package_requirements = {'python-application': '1.2.8'} try: from application.dependency import ApplicationDependencies except: class DependencyError(Exception): pass class ApplicationDependencies(object): def __init__(self, *args, **kwargs): pass def check(self): raise DependencyError("need python-application version %s or higher but it's not installed" % package_requirements['python-application']) dependencies = ApplicationDependencies(**package_requirements) diff --git a/debian/control b/debian/control index 71e63b7..b01adc5 100644 --- a/debian/control +++ b/debian/control @@ -1,22 +1,22 @@ Source: callcontrol Section: net Priority: optional Maintainer: Lucian Stanescu Uploaders: Dan Pascu , Adrian Georgescu , Saul Ibarra Build-Depends: debhelper (>= 7.3.5), python (>= 2.5) Standards-Version: 3.9.2 Package: callcontrol Architecture: all -Depends: ${python:Depends}, ${misc:Depends}, python-application (>= 1.1.5), python-twisted-core, python-sqlobject +Depends: ${python:Depends}, ${misc:Depends}, python-application (>= 1.2.8), python-twisted-core, python-sqlobject Description: Call Control prepaid application for OpenSIPS Call Control is a prepaid application that can be used together with OpenSIPS call_control module and CDRTool rating engine to limit the duration of SIP sessions based on a prepaid balance. It can also be used to limit the duration of any session to a predefined maximum value without debiting a balance. . Call Control achieves this by maintaining a timer for each session and sending BYE messages to both SIP end-points, if the session exceeds its maximum session limit or if the Call Control receives a command to forcefully close the call from outside.