mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
So, this time we had TCP transitional states support, but it was in semi-finished libsoccr library :) And in order to have the TCP C/R fixed we fixed the library and are now ready to release them both. Said that, two main features of the Waxwing release are * libsoccr -- the library for TCP sockets C/R * TCP transitional states C/R Also we have a set of bugfixes, caught performance issue on Xen and a little bit more. Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
25 lines
730 B
Text
25 lines
730 B
Text
#
|
|
# CRIU version.
|
|
CRIU_VERSION_MAJOR := 2
|
|
CRIU_VERSION_MINOR := 10
|
|
CRIU_VERSION_SUBLEVEL :=
|
|
CRIU_VERSION_EXTRA :=
|
|
CRIU_VERSION_NAME := Brass Waxwing
|
|
CRIU_VERSION := $(CRIU_VERSION_MAJOR)$(if $(CRIU_VERSION_MINOR),.$(CRIU_VERSION_MINOR))$(if $(CRIU_VERSION_SUBLEVEL),.$(CRIU_VERSION_SUBLEVEL))$(if $(CRIU_VERSION_EXTRA),.$(CRIU_VERSION_EXTRA))
|
|
|
|
export CRIU_VERSION_MAJOR CRIU_VERSION_MINOR CRIU_VERSION_SUBLEVEL
|
|
export CRIU_VERSION_EXTRA CRIU_VERSION_NAME CRIU_VERSION
|
|
|
|
#
|
|
# C library for CRIU.
|
|
CRIU_SO_VERSION_MAJOR := 1
|
|
CRIU_SO_VERSION_MINOR := 0
|
|
|
|
export CRIU_SO_VERSION_MAJOR CRIU_SO_VERSION_MINOR
|
|
|
|
#
|
|
# SOCCR library.
|
|
SOCCR_SO_VERSION_MAJOR := 1
|
|
SOCCR_SO_VERSION_MINOR := 0
|
|
|
|
export SOCCR_SO_VERSION_MAJOR SOCCR_SO_VERSION_MINOR
|