diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2017-08-08 19:00:30 +0300 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2017-08-08 19:00:34 +0300 |
commit | 04aaeb9bb66c7150bcfea7aadf48663624676316 (patch) | |
tree | ed8084c707db242e63262df59d718df51f3ce95e | |
parent | 925199165169cec79f4a46475b79914cb556ac7c (diff) | |
download | accel-ppp-04aaeb9bb66c7150bcfea7aadf48663624676316.tar.gz accel-ppp-04aaeb9bb66c7150bcfea7aadf48663624676316.zip |
1.11.2 release
* ipoe: assign point-to-point addresses to non-shared physical interface (prevents route cleaning by interface renaming)
* ipoe: lua: add "vlan" field to session object
* ipoe: fixed prefix calculation from ipaddr
* ipoe: implemented ability to change ipset by CoA
* ipoe: included lua bitop library
* ipoe: implemented support for vendor specific attrbiutes
* ipoe: add client ip as route when nat=1
* shaper: fixed conditions to install limiter (may install only up or only down limiter)
* shaper: fixed bug in class id allocation procedure
* cmake: check for pcre and openssl headers are present
* implemented session count limiting
* support for openssl-1.1
* fixed connection problem with clients having nomru option
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | cmake/cpack.cmake | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1b0dbe83..9a6ed3fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -48,7 +48,7 @@ IF (EXISTS ${CMAKE_HOME_DIRECTORY}/.git AND NOT IGNORE_GIT) ) STRING(STRIP ${ACCEL_PPP_VERSION} ACCEL_PPP_VERSION) ELSE (EXISTS ${CMAKE_HOME_DIRECTORY}/.git AND NOT IGNORE_GIT) - SET (ACCEL_PPP_VERSION 1.11.0) + SET (ACCEL_PPP_VERSION 1.11.2) ENDIF (EXISTS ${CMAKE_HOME_DIRECTORY}/.git AND NOT IGNORE_GIT) ADD_DEFINITIONS(-DACCEL_PPP_VERSION="${ACCEL_PPP_VERSION}") diff --git a/cmake/cpack.cmake b/cmake/cpack.cmake index 692fbf7c..9526e821 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 "11") -SET(CPACK_PACKAGE_VERSION_PATCH "0") +SET(CPACK_PACKAGE_VERSION_PATCH "2") SET(CPACK_PACKAGE_NAME "accel-ppp") SET(CPACK_PACKAGE_CONTACT "Dmitry Kozlov <xeb@mail.ru>") |