diff options
author | Kozlov Dmitry <xeb@mail.ru> | 2012-07-30 12:42:04 +0400 |
---|---|---|
committer | Kozlov Dmitry <xeb@mail.ru> | 2012-07-30 12:42:10 +0400 |
commit | 8b6ea70a163d0cfc84394a7241a4dad8a0bf2051 (patch) | |
tree | 838a43d1934e67e06de118549947b6ac0b09cd2a | |
parent | ca6455606c14fec4fd825325a1ae0cc8a9c8fe90 (diff) | |
download | accel-ppp-8b6ea70a163d0cfc84394a7241a4dad8a0bf2051.tar.gz accel-ppp-8b6ea70a163d0cfc84394a7241a4dad8a0bf2051.zip |
1.7.1 release
* drop compressor settings on session termination
* fixed race condition on termination
* fixed unexpected lcp timer start
* fixed setting of ACCEL_PPP_VERSION with git coloured output
* log_file: fixed bug in per user log
* pppoe: tag length sanity check
* iprange: accept network with null mask (which actually disables iprange module)
* l2tp: various fixes
* radius: update Class attribute by CoA request
* telnet: check for disconnect condition while processing input chars
* implemented per-CTRL ip-pool option to specify default ip pool name
-rw-r--r-- | accel-pppd/CMakeLists.txt | 2 | ||||
-rw-r--r-- | cmake/cpack.cmake | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/accel-pppd/CMakeLists.txt b/accel-pppd/CMakeLists.txt index 97c60349..1db4137d 100644 --- a/accel-pppd/CMakeLists.txt +++ b/accel-pppd/CMakeLists.txt @@ -10,7 +10,7 @@ IF (EXISTS ${CMAKE_HOME_DIRECTORY}/.git AND NOT DEFINED IGNORE_GIT) ) STRING(STRIP ${ACCEL_PPP_VERSION} ACCEL_PPP_VERSION) ELSE (EXISTS ${CMAKE_HOME_DIRECTORY}/.git AND NOT DEFINED IGNORE_GIT) - SET (ACCEL_PPP_VERSION 1.7.0) + SET (ACCEL_PPP_VERSION 1.7.1) ENDIF (EXISTS ${CMAKE_HOME_DIRECTORY}/.git AND NOT DEFINED IGNORE_GIT) ADD_DEFINITIONS(-DACCEL_PPP_VERSION="${ACCEL_PPP_VERSION}") diff --git a/cmake/cpack.cmake b/cmake/cpack.cmake index fa5ce3c6..117786a8 100644 --- a/cmake/cpack.cmake +++ b/cmake/cpack.cmake @@ -2,7 +2,7 @@ INCLUDE(InstallRequiredSystemLibraries) SET(CPACK_PACKAGE_VERSION_MAJOR "1") SET(CPACK_PACKAGE_VERSION_MINOR "7") -SET(CPACK_PACKAGE_VERSION_PATCH "0") +SET(CPACK_PACKAGE_VERSION_PATCH "1") SET(CPACK_PACKAGE_NAME "accel-ppp") SET(CPACK_PACKAGE_CONTACT "Dmitry Kozlov <xeb@mail.ru>") |