Module: kamailio
Branch: 4.1
Commit: 35c30994c4c9ed7ffa78224b37af5ec972c7ca61
URL: https://github.com/kamailio/kamailio/commit/35c30994c4c9ed7ffa78224b37af5ec…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2016-06-08T08:53:37+02:00
tls: proper check of libssl versions used for compilation and available on system
- shift out the last 12bits, being the patch version and status (see man
SSLeay)
- reported by Victor Seva, GH #662
(cherry picked from commit c38b4c7345a6806f48a0cdb07841e10bc962e1bf)
(cherry picked from commit 253909bf673c0a59e7adf578bb5df73eb157d0f2)
(cherry picked from commit 5632abc108bf8ed8157a77806ea80b962db3fa4f)
(cherry picked from commit 0a5f99b28d01d79cf2675df6d2a6220167e2476e)
---
Modified: modules/tls/tls_init.c
---
Diff: https://github.com/kamailio/kamailio/commit/35c30994c4c9ed7ffa78224b37af5ec…
Patch: https://github.com/kamailio/kamailio/commit/35c30994c4c9ed7ffa78224b37af5ec…
---
diff --git a/modules/tls/tls_init.c b/modules/tls/tls_init.c
index c4a6a2d..bc724c9 100644
--- a/modules/tls/tls_init.c
+++ b/modules/tls/tls_init.c
@@ -528,8 +528,10 @@ int init_tls_h(void)
#endif
ssl_version=SSLeay();
/* check if version have the same major minor and fix level
- * (e.g. 0.9.8a & 0.9.8c are ok, but 0.9.8 and 0.9.9x are not) */
- if ((ssl_version>>8)!=(OPENSSL_VERSION_NUMBER>>8)){
+ * (e.g. 0.9.8a & 0.9.8c are ok, but 0.9.8 and 0.9.9x are not)
+ * - values is represented as 0xMMNNFFPPS: major minor fix patch status
+ * 0x00090705f == 0.9.7e release */
+ if ((ssl_version>>12)!=(OPENSSL_VERSION_NUMBER>>12)){
LOG(L_CRIT, "ERROR: tls: init_tls_h: installed openssl library "
"version is too different from the library the ser tls module "
"was compiled with: installed \"%s\" (0x%08lx), compiled "
Module: kamailio
Branch: 4.2
Commit: 0a5f99b28d01d79cf2675df6d2a6220167e2476e
URL: https://github.com/kamailio/kamailio/commit/0a5f99b28d01d79cf2675df6d2a6220…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2016-06-08T08:52:28+02:00
tls: proper check of libssl versions used for compilation and available on system
- shift out the last 12bits, being the patch version and status (see man
SSLeay)
- reported by Victor Seva, GH #662
(cherry picked from commit c38b4c7345a6806f48a0cdb07841e10bc962e1bf)
(cherry picked from commit 253909bf673c0a59e7adf578bb5df73eb157d0f2)
(cherry picked from commit 5632abc108bf8ed8157a77806ea80b962db3fa4f)
---
Modified: modules/tls/tls_init.c
---
Diff: https://github.com/kamailio/kamailio/commit/0a5f99b28d01d79cf2675df6d2a6220…
Patch: https://github.com/kamailio/kamailio/commit/0a5f99b28d01d79cf2675df6d2a6220…
---
diff --git a/modules/tls/tls_init.c b/modules/tls/tls_init.c
index a381be1..7bfc10f 100644
--- a/modules/tls/tls_init.c
+++ b/modules/tls/tls_init.c
@@ -543,8 +543,10 @@ int init_tls_h(void)
#endif
ssl_version=SSLeay();
/* check if version have the same major minor and fix level
- * (e.g. 0.9.8a & 0.9.8c are ok, but 0.9.8 and 0.9.9x are not) */
- if ((ssl_version>>8)!=(OPENSSL_VERSION_NUMBER>>8)){
+ * (e.g. 0.9.8a & 0.9.8c are ok, but 0.9.8 and 0.9.9x are not)
+ * - values is represented as 0xMMNNFFPPS: major minor fix patch status
+ * 0x00090705f == 0.9.7e release */
+ if ((ssl_version>>12)!=(OPENSSL_VERSION_NUMBER>>12)){
LOG(L_CRIT, "ERROR: tls: init_tls_h: installed openssl library "
"version is too different from the library the ser tls module "
"was compiled with: installed \"%s\" (0x%08lx), compiled "
Module: kamailio
Branch: 4.3
Commit: 5632abc108bf8ed8157a77806ea80b962db3fa4f
URL: https://github.com/kamailio/kamailio/commit/5632abc108bf8ed8157a77806ea80b9…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2016-06-08T08:46:56+02:00
tls: proper check of libssl versions used for compilation and available on system
- shift out the last 12bits, being the patch version and status (see man
SSLeay)
- reported by Victor Seva, GH #662
(cherry picked from commit c38b4c7345a6806f48a0cdb07841e10bc962e1bf)
(cherry picked from commit 253909bf673c0a59e7adf578bb5df73eb157d0f2)
---
Modified: modules/tls/tls_init.c
---
Diff: https://github.com/kamailio/kamailio/commit/5632abc108bf8ed8157a77806ea80b9…
Patch: https://github.com/kamailio/kamailio/commit/5632abc108bf8ed8157a77806ea80b9…
---
diff --git a/modules/tls/tls_init.c b/modules/tls/tls_init.c
index d7f3cef..e0bbb0b 100644
--- a/modules/tls/tls_init.c
+++ b/modules/tls/tls_init.c
@@ -545,8 +545,10 @@ int init_tls_h(void)
#endif
ssl_version=SSLeay();
/* check if version have the same major minor and fix level
- * (e.g. 0.9.8a & 0.9.8c are ok, but 0.9.8 and 0.9.9x are not) */
- if ((ssl_version>>8)!=(OPENSSL_VERSION_NUMBER>>8)){
+ * (e.g. 0.9.8a & 0.9.8c are ok, but 0.9.8 and 0.9.9x are not)
+ * - values is represented as 0xMMNNFFPPS: major minor fix patch status
+ * 0x00090705f == 0.9.7e release */
+ if ((ssl_version>>12)!=(OPENSSL_VERSION_NUMBER>>12)){
LOG(L_CRIT, "ERROR: tls: init_tls_h: installed openssl library "
"version is too different from the library the Kamailio tls module "
"was compiled with: installed \"%s\" (0x%08lx), compiled "
Module: kamailio
Branch: 4.4
Commit: 253909bf673c0a59e7adf578bb5df73eb157d0f2
URL: https://github.com/kamailio/kamailio/commit/253909bf673c0a59e7adf578bb5df73…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2016-06-08T08:45:23+02:00
tls: proper check of libssl versions used for compilation and available on system
- shift out the last 12bits, being the patch version and status (see man
SSLeay)
- reported by Victor Seva, GH #662
(cherry picked from commit c38b4c7345a6806f48a0cdb07841e10bc962e1bf)
---
Modified: modules/tls/tls_init.c
---
Diff: https://github.com/kamailio/kamailio/commit/253909bf673c0a59e7adf578bb5df73…
Patch: https://github.com/kamailio/kamailio/commit/253909bf673c0a59e7adf578bb5df73…
---
diff --git a/modules/tls/tls_init.c b/modules/tls/tls_init.c
index d7f3cef..e0bbb0b 100644
--- a/modules/tls/tls_init.c
+++ b/modules/tls/tls_init.c
@@ -545,8 +545,10 @@ int init_tls_h(void)
#endif
ssl_version=SSLeay();
/* check if version have the same major minor and fix level
- * (e.g. 0.9.8a & 0.9.8c are ok, but 0.9.8 and 0.9.9x are not) */
- if ((ssl_version>>8)!=(OPENSSL_VERSION_NUMBER>>8)){
+ * (e.g. 0.9.8a & 0.9.8c are ok, but 0.9.8 and 0.9.9x are not)
+ * - values is represented as 0xMMNNFFPPS: major minor fix patch status
+ * 0x00090705f == 0.9.7e release */
+ if ((ssl_version>>12)!=(OPENSSL_VERSION_NUMBER>>12)){
LOG(L_CRIT, "ERROR: tls: init_tls_h: installed openssl library "
"version is too different from the library the Kamailio tls module "
"was compiled with: installed \"%s\" (0x%08lx), compiled "
Module: kamailio
Branch: master
Commit: 18cdefaf0ebcd84333f8d0a5c81dd6a53a65901e
URL: https://github.com/kamailio/kamailio/commit/18cdefaf0ebcd84333f8d0a5c81dd6a…
Author: Victor Seva <linuxmaniac(a)torreviejawireless.org>
Committer: Victor Seva <linuxmaniac(a)torreviejawireless.org>
Date: 2016-06-07T18:25:28+02:00
pkg/kamailio/deb: version set to 5.0.0~dev5
---
Modified: pkg/kamailio/deb/debian/changelog
Modified: pkg/kamailio/deb/jessie/changelog
Modified: pkg/kamailio/deb/precise/changelog
Modified: pkg/kamailio/deb/sid/changelog
Modified: pkg/kamailio/deb/squeeze/changelog
Modified: pkg/kamailio/deb/stretch/changelog
Modified: pkg/kamailio/deb/trusty/changelog
Modified: pkg/kamailio/deb/wheezy/changelog
---
Diff: https://github.com/kamailio/kamailio/commit/18cdefaf0ebcd84333f8d0a5c81dd6a…
Patch: https://github.com/kamailio/kamailio/commit/18cdefaf0ebcd84333f8d0a5c81dd6a…
---
diff --git a/pkg/kamailio/deb/debian/changelog b/pkg/kamailio/deb/debian/changelog
index 74e0cd9..df4eb6d 100644
--- a/pkg/kamailio/deb/debian/changelog
+++ b/pkg/kamailio/deb/debian/changelog
@@ -1,3 +1,9 @@
+kamailio (5.0.0~dev5) unstable; urgency=medium
+
+ * version set to 5.0.0-dev5
+
+ -- Victor Seva <vseva(a)debian.org> Tue, 07 Jun 2016 18:24:53 +0200
+
kamailio (5.0.0~dev4) unstable; urgency=medium
* version set to 5.0.0-dev4
diff --git a/pkg/kamailio/deb/jessie/changelog b/pkg/kamailio/deb/jessie/changelog
index 74e0cd9..df4eb6d 100644
--- a/pkg/kamailio/deb/jessie/changelog
+++ b/pkg/kamailio/deb/jessie/changelog
@@ -1,3 +1,9 @@
+kamailio (5.0.0~dev5) unstable; urgency=medium
+
+ * version set to 5.0.0-dev5
+
+ -- Victor Seva <vseva(a)debian.org> Tue, 07 Jun 2016 18:24:53 +0200
+
kamailio (5.0.0~dev4) unstable; urgency=medium
* version set to 5.0.0-dev4
diff --git a/pkg/kamailio/deb/precise/changelog b/pkg/kamailio/deb/precise/changelog
index 74e0cd9..df4eb6d 100644
--- a/pkg/kamailio/deb/precise/changelog
+++ b/pkg/kamailio/deb/precise/changelog
@@ -1,3 +1,9 @@
+kamailio (5.0.0~dev5) unstable; urgency=medium
+
+ * version set to 5.0.0-dev5
+
+ -- Victor Seva <vseva(a)debian.org> Tue, 07 Jun 2016 18:24:53 +0200
+
kamailio (5.0.0~dev4) unstable; urgency=medium
* version set to 5.0.0-dev4
diff --git a/pkg/kamailio/deb/sid/changelog b/pkg/kamailio/deb/sid/changelog
index 74e0cd9..df4eb6d 100644
--- a/pkg/kamailio/deb/sid/changelog
+++ b/pkg/kamailio/deb/sid/changelog
@@ -1,3 +1,9 @@
+kamailio (5.0.0~dev5) unstable; urgency=medium
+
+ * version set to 5.0.0-dev5
+
+ -- Victor Seva <vseva(a)debian.org> Tue, 07 Jun 2016 18:24:53 +0200
+
kamailio (5.0.0~dev4) unstable; urgency=medium
* version set to 5.0.0-dev4
diff --git a/pkg/kamailio/deb/squeeze/changelog b/pkg/kamailio/deb/squeeze/changelog
index 74e0cd9..df4eb6d 100644
--- a/pkg/kamailio/deb/squeeze/changelog
+++ b/pkg/kamailio/deb/squeeze/changelog
@@ -1,3 +1,9 @@
+kamailio (5.0.0~dev5) unstable; urgency=medium
+
+ * version set to 5.0.0-dev5
+
+ -- Victor Seva <vseva(a)debian.org> Tue, 07 Jun 2016 18:24:53 +0200
+
kamailio (5.0.0~dev4) unstable; urgency=medium
* version set to 5.0.0-dev4
diff --git a/pkg/kamailio/deb/stretch/changelog b/pkg/kamailio/deb/stretch/changelog
index 74e0cd9..df4eb6d 100644
--- a/pkg/kamailio/deb/stretch/changelog
+++ b/pkg/kamailio/deb/stretch/changelog
@@ -1,3 +1,9 @@
+kamailio (5.0.0~dev5) unstable; urgency=medium
+
+ * version set to 5.0.0-dev5
+
+ -- Victor Seva <vseva(a)debian.org> Tue, 07 Jun 2016 18:24:53 +0200
+
kamailio (5.0.0~dev4) unstable; urgency=medium
* version set to 5.0.0-dev4
diff --git a/pkg/kamailio/deb/trusty/changelog b/pkg/kamailio/deb/trusty/changelog
index 74e0cd9..df4eb6d 100644
--- a/pkg/kamailio/deb/trusty/changelog
+++ b/pkg/kamailio/deb/trusty/changelog
@@ -1,3 +1,9 @@
+kamailio (5.0.0~dev5) unstable; urgency=medium
+
+ * version set to 5.0.0-dev5
+
+ -- Victor Seva <vseva(a)debian.org> Tue, 07 Jun 2016 18:24:53 +0200
+
kamailio (5.0.0~dev4) unstable; urgency=medium
* version set to 5.0.0-dev4
diff --git a/pkg/kamailio/deb/wheezy/changelog b/pkg/kamailio/deb/wheezy/changelog
index 74e0cd9..df4eb6d 100644
--- a/pkg/kamailio/deb/wheezy/changelog
+++ b/pkg/kamailio/deb/wheezy/changelog
@@ -1,3 +1,9 @@
+kamailio (5.0.0~dev5) unstable; urgency=medium
+
+ * version set to 5.0.0-dev5
+
+ -- Victor Seva <vseva(a)debian.org> Tue, 07 Jun 2016 18:24:53 +0200
+
kamailio (5.0.0~dev4) unstable; urgency=medium
* version set to 5.0.0-dev4