diff --git a/configure.in b/configure.in index 143bfd416..3d1263fc7 100644 --- a/configure.in +++ b/configure.in @@ -16,7 +16,7 @@ dnl =========================== dnl initialize & set some vars dnl =========================== -AC_INIT(strongSwan,4.2.2) +AC_INIT(strongSwan,4.2.3) AM_INIT_AUTOMAKE(tar-ustar) AC_C_BIGENDIAN AC_SUBST(confdir, '${sysconfdir}') diff --git a/src/pluto/vendor.c b/src/pluto/vendor.c index 83de5eda1..f615bf732 100644 --- a/src/pluto/vendor.c +++ b/src/pluto/vendor.c @@ -206,7 +206,8 @@ static struct vid_struct _vid_tab[] = { /* * strongSwan */ - DEC_MD5_VID(STRONGSWAN, "strongSwan 4.2.2") + DEC_MD5_VID(STRONGSWAN, "strongSwan 4.2.3") + DEC_MD5_VID(STRONGSWAN_4_2_2, "strongSwan 4.2.2") DEC_MD5_VID(STRONGSWAN_4_2_1, "strongSwan 4.2.1") DEC_MD5_VID(STRONGSWAN_4_2_0, "strongSwan 4.2.0") DEC_MD5_VID(STRONGSWAN_4_1_11,"strongSwan 4.1.11") diff --git a/src/pluto/vendor.h b/src/pluto/vendor.h index 678e62253..8500fa14a 100644 --- a/src/pluto/vendor.h +++ b/src/pluto/vendor.h @@ -118,6 +118,7 @@ enum known_vendorid { VID_STRONGSWAN_4_2_0 =100, VID_STRONGSWAN_4_2_1 =101, + VID_STRONGSWAN_4_2_2 =102, /* 101 - 200 : NAT-Traversal */ VID_NATT_STENBERG_01 =151, diff --git a/testing/INSTALL b/testing/INSTALL index e31abc62d..6b995441b 100644 --- a/testing/INSTALL +++ b/testing/INSTALL @@ -71,7 +71,7 @@ are required for the strongSwan testing environment: * The latest strongSwan distribution - http://download.strongswan.org/strongswan-4.2.2.tar.bz2 + http://download.strongswan.org/strongswan-4.2.3.tar.bz2 3. Creating the environment diff --git a/testing/testing.conf b/testing/testing.conf index c63b4b2e6..31dba70e9 100755 --- a/testing/testing.conf +++ b/testing/testing.conf @@ -21,20 +21,20 @@ UMLTESTDIR=~/strongswan-testing # Bzipped kernel sources # (file extension .tar.bz2 required) -KERNEL=$UMLTESTDIR/linux-2.6.24.4.tar.bz2 +KERNEL=$UMLTESTDIR/linux-2.6.26-rc3.tar.bz2 # Extract kernel version KERNELVERSION=`basename $KERNEL .tar.bz2 | sed -e 's/linux-//'` # Kernel configuration file -KERNELCONFIG=$UMLTESTDIR/.config-2.6.24 +KERNELCONFIG=$UMLTESTDIR/.config-2.6.26 # Bzipped uml patch for kernel # (not needed anymore for 2.6.9 kernel or higher) #UMLPATCH=$UMLTESTDIR/uml_jmpbuf-2.6.18.patch.bz2 # Bzipped source of strongSwan -STRONGSWAN=$UMLTESTDIR/strongswan-4.2.2.tar.bz2 +STRONGSWAN=$UMLTESTDIR/strongswan-4.2.3.tar.bz2 # strongSwan compile options (use "yes" or "no") USE_LIBCURL="yes"