# HG changeset patch # User Sebastien Decugis # Date 1301363284 -32400 # Node ID eefb6fa3c90464a03dcbdc61a77c427a7b4a2590 # Parent d59decafe9c094add0f616f06a397e82b6febd13 Added RFC4006 incomplete dictionary extension to the debian package diff -r d59decafe9c0 -r eefb6fa3c904 contrib/debian/changelog --- a/contrib/debian/changelog Thu Mar 24 15:00:38 2011 +0900 +++ b/contrib/debian/changelog Tue Mar 29 10:48:04 2011 +0900 @@ -22,8 +22,10 @@ * New extension rt_redirect.fdx that handles the Diameter Redirect errors. * New extension app_redirect that allows sending Redirect indications to other peers. See doc/app_redirect.conf.sample for more information. + * Added incomplete dictionary extension for rfc4006 (DCCA), courtesy + of Konstantin Chekushin - -- Sebastien Decugis Fri, 18 Feb 2011 15:25:19 +0900 + -- Sebastien Decugis Tue, 29 Mar 2011 10:41:19 +0900 freediameter (1.0.4) UNRELEASED; urgency=low diff -r d59decafe9c0 -r eefb6fa3c904 contrib/debian/control --- a/contrib/debian/control Thu Mar 24 15:00:38 2011 +0900 +++ b/contrib/debian/control Tue Mar 29 10:48:04 2011 +0900 @@ -68,6 +68,22 @@ . This extension does not require a configuration file. +Package: freediameter-dictionary-rfc4006 +Architecture: any +Depends: ${misc:Depends}, freediameter-common (= ${binary:Version}) +Description: RFC4006 (DCCA) dictionary support (incomplete). + This freeDiameter extension provides the dictionary support + for commands and AVP defined in RFC4006 (DCCA). + . + In order to use this extension, your main freeDiameter + configuration file must contain a LoadExtension directive. + See freeDiameter documentation for more details. + . + This extension does not require a configuration file. + . + Currently this extension is not complete: only AVP definitions + are included. See the source file for more details. + Package: freediameter-dictionary-rfc4072 Architecture: any Depends: ${misc:Depends}, freediameter-common (= ${binary:Version}), freediameter-dictionary-rfc4005 (= ${binary:Version}) diff -r d59decafe9c0 -r eefb6fa3c904 contrib/debian/freediameter-dictionary-rfc4006.install --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/debian/freediameter-dictionary-rfc4006.install Tue Mar 29 10:48:04 2011 +0900 @@ -0,0 +1,1 @@ +usr/lib/freeDiameter/dict_dcca.fdx diff -r d59decafe9c0 -r eefb6fa3c904 extensions/dict_dcca/CMakeLists.txt --- a/extensions/dict_dcca/CMakeLists.txt Thu Mar 24 15:00:38 2011 +0900 +++ b/extensions/dict_dcca/CMakeLists.txt Tue Mar 29 10:48:04 2011 +0900 @@ -10,4 +10,4 @@ INSTALL(TARGETS dict_dcca LIBRARY DESTINATION ${INSTALL_EXTENSIONS_SUFFIX} - COMPONENT freeDiameter-dictionary-dcca) + COMPONENT freeDiameter-dictionary-rfc4006)