diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2014-12-09 10:05:46 +0300 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2014-12-09 10:05:57 +0300 |
commit | 904bc0f9eefffff153282277ea21729f46c1489d (patch) | |
tree | 2d5e64765a17e2eb49aab9214287dd19e953ac8b /CMakeLists.txt | |
parent | 8780e9b106964f1f271748165dac10122ee6c620 (diff) | |
download | accel-ppp-xebd-1.9.tar.gz accel-ppp-xebd-1.9.zip |
1.9.0 release1.9
* radius: major improvments
* radius: use NAS-Port-Id in Access-Accept for interface renaming
* radius: introduced "weight" and "backup" per-server options
* radius: introduced "attr-tunnel-type" option
* radius: introduced "max-fail" option
* ipoe: introduced "ip-unnumbered" option
* ipoe: improved vlan monitor
* ipoe: introduced "attr-dhcp-lease-time" option
* ipoe: send option 82 from DHCP request to radius
* ipoe: fixed passing packets in 'redirect on reject' mode
* ipoe: implemented handling relayed DHCP clients
* ipoe: implemented "L4 redirect on reject" for DHCP sessions
* ipoe: implemneted ability to send L4 redirect table/L4 redirect ipset via radius attributes
* pppoe: introduced "called-sid" option
* pppoe: improved AC-Cookie mechanism
* ippool: introduced "shuffle" option
* core: improved "single-session=replace" handling
* shaper: apply rate multiplier to integer values
* shaper: implemented fq_codel leaf qdisc
* shaper: fixed passing quantum parameter to kernel
* shaper: introduced "moderate-quantum" option
* shaper: introduced "fwmark" option
* ipv6: add support for prefixes greater than 64
* ppp: make LCP magic number negotiation not mandatory
* ppp: implement address/control and protocol field compression
* ppp: implemented delayed unit close via unit cache
* pppd_compat: pass IPV6_PREFIX and IPV6_DELEGATED_PREFIX to ip-up/ip-down scripts
* cli: introduced verbose option
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c41f0e0..9ea7f4f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,7 +30,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.8.0) + SET (ACCEL_PPP_VERSION 1.9.0) ENDIF (EXISTS ${CMAKE_HOME_DIRECTORY}/.git AND NOT IGNORE_GIT) ADD_DEFINITIONS(-DACCEL_PPP_VERSION="${ACCEL_PPP_VERSION}") @@ -64,17 +64,12 @@ if (NOT BUILD_DRIVER_ONLY) add_subdirectory(accel-cmd) endif (NOT BUILD_DRIVER_ONLY) -if (BUILD_PPTP_DRIVER OR BUILD_DRIVER_ONLY) - if (BUILD_PPTP_DRIVER) - add_subdirectory(drivers/pptp) - endif (BUILD_PPTP_DRIVER) -endif (BUILD_PPTP_DRIVER OR BUILD_DRIVER_ONLY) +if (BUILD_PPTP_DRIVER) + add_subdirectory(drivers/pptp) +endif (BUILD_PPTP_DRIVER) -if (BUILD_IPOE_DRIVER OR BUILD_DRIVER_ONLY) - if (BUILD_IPOE_DRIVER) - add_subdirectory(drivers/ipoe) - endif (BUILD_IPOE_DRIVER) -endif (BUILD_IPOE_DRIVER OR BUILD_DRIVER_ONLY) +if (BUILD_IPOE_DRIVER) + add_subdirectory(drivers/ipoe) +endif (BUILD_IPOE_DRIVER) CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h) - |