[sr-dev] Re: Planning Kamailio Developers Meeting 2023

2023-09-26 Thread Daniel-Constantin Mierla via sr-dev
Hello,

bumping this one at the top just in case someone missed it -- as we plan
to nail down the dates of the event in a matter of days, should anyone
consider to participate, let me know so we can choose the best time
frame for most of us.

Cheers,
Daniel

On 21.09.23 14:07, Daniel-Constantin Mierla wrote:
> Hello,
>
> we are considering to organize another edition of Kamailio Developers
> Meeting, to be hosted again by sipgate.de in Dusseldorf, Germany. There
> is no fee for participants (i.e., free entry), but each one has to take
> care of travelling and accommodation (drinks and food are provided
> during the day).
>
> A few developers are already on board, we are looking to see if anyone
> else from the broader community wants to join us. Likely it is going to
> be during 2 days (with the option of doing it during three days still
> open at this moment, if there is going to be enough interest to have it
> longer). The proposed time frames are:
>
>   - Nov 7-9, 2023
>   - Nov 21-23, 2023
>
> The event is about discussing the internals of Kamailio (e.g.,
> architectural changes, development strategies) and writing code or
> documentation for it. This is not an event about learning how to use
> Kamailio, but to work on improving it. As a bonus, there will be a
> social networking event in the evening with some fun activities, drinks
> and food.
>
> If you want to join, state your preference for any of the two time
> frames (or even just for 2 days in one of the two time frames). It is
> not a large meeting room, if we get too many join requests, we may have
> to select based on past contributions, and if that is not the case, then
> is just the first come first served.
>
> You can reply to this thread or just write me directly if you want to
> join and when you prefer to happen.
>
> By mid of next week, we plan to select the event dates so everyone that
> comes to it can start planning the trip.
>
> Cheers,
> Daniel
>
> -- 
> Daniel-Constantin Mierla (@ asipto.com)
> twitter.com/miconda -- linkedin.com/in/miconda
> Kamailio Consultancy - Training Services -- asipto.com
> Kamailio World Conference - kamailioworld.com
>
-- 
Daniel-Constantin Mierla (@ asipto.com)
twitter.com/miconda -- linkedin.com/in/miconda
Kamailio Consultancy - Training Services -- asipto.com
Kamailio World Conference - kamailioworld.com

___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] git:master:dc3d035f: cdp: tls v1.3 only for libssl 1.1.1f

2023-09-26 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio
Branch: master
Commit: dc3d035f75d414c96889aefedd316a5a28bb26ec
URL: 
https://github.com/kamailio/kamailio/commit/dc3d035f75d414c96889aefedd316a5a28bb26ec

Author: Daniel-Constantin Mierla 
Committer: Daniel-Constantin Mierla 
Date: 2023-09-26T11:18:50+02:00

cdp: tls v1.3 only for libssl 1.1.1f

---

Modified: src/modules/cdp/cdp_tls.c

---

Diff:  
https://github.com/kamailio/kamailio/commit/dc3d035f75d414c96889aefedd316a5a28bb26ec.diff
Patch: 
https://github.com/kamailio/kamailio/commit/dc3d035f75d414c96889aefedd316a5a28bb26ec.patch

---

diff --git a/src/modules/cdp/cdp_tls.c b/src/modules/cdp/cdp_tls.c
index c2947a486ca..6c7fb9a1f45 100644
--- a/src/modules/cdp/cdp_tls.c
+++ b/src/modules/cdp/cdp_tls.c
@@ -48,6 +48,7 @@ void init_ssl_methods(void)
tls_methods[TLS_USE_TLSv1_2 - 1].TLSMethodMin = TLS1_2_VERSION;
tls_methods[TLS_USE_TLSv1_2 - 1].TLSMethodMax = TLS1_2_VERSION;
 
+#if OPENSSL_VERSION_NUMBER >= 0x1010100fL && !defined(LIBRESSL_VERSION_NUMBER)
tls_methods[TLS_USE_TLSv1_3_cli - 1].TLSMethod = TLS_client_method();
tls_methods[TLS_USE_TLSv1_3_cli - 1].TLSMethodMin = TLS1_3_VERSION;
tls_methods[TLS_USE_TLSv1_3_cli - 1].TLSMethodMax = TLS1_3_VERSION;
@@ -57,6 +58,7 @@ void init_ssl_methods(void)
tls_methods[TLS_USE_TLSv1_3 - 1].TLSMethod = TLS_method();
tls_methods[TLS_USE_TLSv1_3 - 1].TLSMethodMin = TLS1_3_VERSION;
tls_methods[TLS_USE_TLSv1_3 - 1].TLSMethodMax = TLS1_3_VERSION;
+#endif
 
/* ranges of TLS versions (require a minimum TLS version) */
tls_methods[TLS_USE_TLSv1_PLUS - 1].TLSMethod = TLS_method();
@@ -68,8 +70,10 @@ void init_ssl_methods(void)
tls_methods[TLS_USE_TLSv1_2_PLUS - 1].TLSMethod = TLS_method();
tls_methods[TLS_USE_TLSv1_2_PLUS - 1].TLSMethodMin = TLS1_2_VERSION;
 
+#if OPENSSL_VERSION_NUMBER >= 0x1010100fL && !defined(LIBRESSL_VERSION_NUMBER)
tls_methods[TLS_USE_TLSv1_3_PLUS - 1].TLSMethod = TLS_method();
tls_methods[TLS_USE_TLSv1_3_PLUS - 1].TLSMethodMin = TLS1_3_VERSION;
+#endif
 }
 
 /*

___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] git:master:6f332ba8: tm: print af and proto as strings in log messages

2023-09-26 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio
Branch: master
Commit: 6f332ba8329f1dcbeeb00badc499580eb1ff98cf
URL: 
https://github.com/kamailio/kamailio/commit/6f332ba8329f1dcbeeb00badc499580eb1ff98cf

Author: Daniel-Constantin Mierla 
Committer: Daniel-Constantin Mierla 
Date: 2023-09-26T13:30:56+02:00

tm: print af and proto as strings in log messages

---

Modified: src/modules/tm/t_fwd.c

---

Diff:  
https://github.com/kamailio/kamailio/commit/6f332ba8329f1dcbeeb00badc499580eb1ff98cf.diff
Patch: 
https://github.com/kamailio/kamailio/commit/6f332ba8329f1dcbeeb00badc499580eb1ff98cf.patch

---

diff --git a/src/modules/tm/t_fwd.c b/src/modules/tm/t_fwd.c
index ae5f7c04805..816568b18ea 100644
--- a/src/modules/tm/t_fwd.c
+++ b/src/modules/tm/t_fwd.c
@@ -470,9 +470,11 @@ static int prepare_new_uac(struct cell *t, struct sip_msg 
*i_req, int branch,
 
/* check if send_sock is ok */
if(t->uac[branch].request.dst.send_sock == 0) {
-   LM_ERR("can't fwd to af %d, proto %d "
+   LM_ERR("can't fwd to af %d (%s), proto %d (%s)"
   " (no corresponding listening socket)\n",
-   dst->to.s.sa_family, dst->proto);
+   dst->to.s.sa_family,
+   get_af_name((unsigned int)dst->to.s.sa_family), 
dst->proto,
+   get_proto_name((unsigned int)dst->proto));
ret = E_NO_SOCKET;
goto error01;
}
@@ -878,10 +880,13 @@ static int add_uac_from_buf(struct cell *t, struct 
sip_msg *request, str *uri,
 
/* check if send_sock is ok */
if(t->uac[branch].request.dst.send_sock == 0) {
-   LM_ERR("can't fwd to af %d, proto %d"
+   LM_ERR("can't fwd to af %d (%s), proto %d (%s)"
   " (no corresponding listening socket)\n",
t->uac[branch].request.dst.to.s.sa_family,
-   t->uac[branch].request.dst.proto);
+   get_af_name((unsigned int)t->uac[branch]
+   
.request.dst.to.s.sa_family),
+   t->uac[branch].request.dst.proto,
+   get_proto_name((unsigned 
int)t->uac[branch].request.dst.proto));
ret = ser_error = E_NO_SOCKET;
goto error;
}

___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] Re: [kamailio/kamailio] no corresponding socket found error (Issue #3583)

2023-09-26 Thread Daniel-Constantin Mierla via sr-dev
Can it be that the responses were delayed and the corresponding transaction 
didn't exist anymore?

-- 
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/3583#issuecomment-1735363255
You are receiving this because you are subscribed to this thread.

Message ID: ___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] git:master:d8a35b3b: core: dns cache - warn messages on safety checks for items

2023-09-26 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio
Branch: master
Commit: d8a35b3b6c837b36779e232b65fce61c3aa93387
URL: 
https://github.com/kamailio/kamailio/commit/d8a35b3b6c837b36779e232b65fce61c3aa93387

Author: Daniel-Constantin Mierla 
Committer: Daniel-Constantin Mierla 
Date: 2023-09-26T20:20:56+02:00

core: dns cache - warn messages on safety checks for items

---

Modified: src/core/dns_cache.c

---

Diff:  
https://github.com/kamailio/kamailio/commit/d8a35b3b6c837b36779e232b65fce61c3aa93387.diff
Patch: 
https://github.com/kamailio/kamailio/commit/d8a35b3b6c837b36779e232b65fce61c3aa93387.patch

---

diff --git a/src/core/dns_cache.c b/src/core/dns_cache.c
index 58c48b33dae..4ad478ba88d 100644
--- a/src/core/dns_cache.c
+++ b/src/core/dns_cache.c
@@ -1690,6 +1690,9 @@ inline static struct dns_hash_entry *dns_get_related(
l = e;
LM_DBG("(%p (%.*s, %d), %d, *%p) (%d)\n", e, e->name_len, e->name, 
e->type,
type, *records, cname_chain_len);
+   if(l->prev != NULL || l->next != NULL) {
+   LM_WARN("record not alone: %p - type: %d\n", l, (int)l->type);
+   }
clist_init(l, next, prev);
if(type == e->type) {
ret = e;
@@ -2034,6 +2037,9 @@ inline static struct dns_hash_entry 
*dns_cache_do_request(str *name, int type)
}
 #endif
 end:
+   if(e != NULL && e->prev == NULL && e->next == NULL) {
+   LM_WARN("record not linked: %p - type: %d\n", e, (int)e->type);
+   }
return e;
 }
 

___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] git:master:e4b9157a: pkg/kamailio/deb: remove ims module from stretch and xenial [skip ci]

2023-09-26 Thread Victor Seva via sr-dev
Module: kamailio
Branch: master
Commit: e4b9157a4be5ceaf9afee3000bb186d2cf59e41d
URL: 
https://github.com/kamailio/kamailio/commit/e4b9157a4be5ceaf9afee3000bb186d2cf59e41d

Author: Victor Seva 
Committer: Victor Seva 
Date: 2023-09-26T23:42:14+02:00

pkg/kamailio/deb: remove ims module from stretch and xenial [skip ci]

* libssl >= v1.1.1 is required

---

Modified: pkg/kamailio/deb/debian/backports/stretch
Modified: pkg/kamailio/deb/debian/backports/xenial
Modified: pkg/kamailio/deb/stretch/control
Modified: pkg/kamailio/deb/stretch/rules
Modified: pkg/kamailio/deb/xenial/control
Modified: pkg/kamailio/deb/xenial/rules

---

Diff:  
https://github.com/kamailio/kamailio/commit/e4b9157a4be5ceaf9afee3000bb186d2cf59e41d.diff
Patch: 
https://github.com/kamailio/kamailio/commit/e4b9157a4be5ceaf9afee3000bb186d2cf59e41d.patch

___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] git:master:27f87c06: etc/kamailio.cfg: update version in comments

2023-09-26 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio
Branch: master
Commit: 27f87c06edfb0a09d745e4341535788fdfbb2be1
URL: 
https://github.com/kamailio/kamailio/commit/27f87c06edfb0a09d745e4341535788fdfbb2be1

Author: Daniel-Constantin Mierla 
Committer: Daniel-Constantin Mierla 
Date: 2023-09-27T08:00:02+02:00

etc/kamailio.cfg: update version in comments

---

Modified: etc/kamailio.cfg

---

Diff:  
https://github.com/kamailio/kamailio/commit/27f87c06edfb0a09d745e4341535788fdfbb2be1.diff
Patch: 
https://github.com/kamailio/kamailio/commit/27f87c06edfb0a09d745e4341535788fdfbb2be1.patch

---

diff --git a/etc/kamailio.cfg b/etc/kamailio.cfg
index 715c289af1e..3c5289297fb 100644
--- a/etc/kamailio.cfg
+++ b/etc/kamailio.cfg
@@ -1,6 +1,6 @@
 #!KAMAILIO
 #
-# Kamailio SIP Server v5.6 - default configuration script
+# Kamailio SIP Server v5.8 - default configuration script
 # - web: https://www.kamailio.org
 # - git: https://github.com/kamailio/kamailio
 #

___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] git:5.7:2f0b2189: etc/kamailio.cfg: updated the version in comments

2023-09-26 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio
Branch: 5.7
Commit: 2f0b2189f52927cdcb17c63087d31e637c4b716f
URL: 
https://github.com/kamailio/kamailio/commit/2f0b2189f52927cdcb17c63087d31e637c4b716f

Author: Daniel-Constantin Mierla 
Committer: Daniel-Constantin Mierla 
Date: 2023-09-27T08:01:04+02:00

etc/kamailio.cfg: updated the version in comments

---

Modified: etc/kamailio.cfg

---

Diff:  
https://github.com/kamailio/kamailio/commit/2f0b2189f52927cdcb17c63087d31e637c4b716f.diff
Patch: 
https://github.com/kamailio/kamailio/commit/2f0b2189f52927cdcb17c63087d31e637c4b716f.patch

---

diff --git a/etc/kamailio.cfg b/etc/kamailio.cfg
index 715c289af1e..d91f5185be1 100644
--- a/etc/kamailio.cfg
+++ b/etc/kamailio.cfg
@@ -1,6 +1,6 @@
 #!KAMAILIO
 #
-# Kamailio SIP Server v5.6 - default configuration script
+# Kamailio SIP Server v5.7 - default configuration script
 # - web: https://www.kamailio.org
 # - git: https://github.com/kamailio/kamailio
 #

___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] git:5.7:5d07b647: kamctl: updated the version to reflect kamailio series

2023-09-26 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio
Branch: 5.7
Commit: 5d07b647680543752512ae89b8ec23fa9a2cbd8a
URL: 
https://github.com/kamailio/kamailio/commit/5d07b647680543752512ae89b8ec23fa9a2cbd8a

Author: Daniel-Constantin Mierla 
Committer: Daniel-Constantin Mierla 
Date: 2023-09-27T08:01:48+02:00

kamctl: updated the version to reflect kamailio series

---

Modified: utils/kamctl/kamctl

---

Diff:  
https://github.com/kamailio/kamailio/commit/5d07b647680543752512ae89b8ec23fa9a2cbd8a.diff
Patch: 
https://github.com/kamailio/kamailio/commit/5d07b647680543752512ae89b8ec23fa9a2cbd8a.patch

---

diff --git a/utils/kamctl/kamctl b/utils/kamctl/kamctl
index 214cd21e5a8..b4e552ef627 100755
--- a/utils/kamctl/kamctl
+++ b/utils/kamctl/kamctl
@@ -5,7 +5,7 @@
 #===
 
 ### version for this script
-VERSION='5.6.0'
+VERSION='5.7.0'
 
 PATH=$PATH:/usr/local/sbin/
 

___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] Jenkins build is back to normal : kamailio57-nightly-binaries » amd64,buster #24

2023-09-26 Thread kamailio--- via sr-dev
See 


___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] Jenkins build is back to normal : kamailio57-nightly-binaries » amd64,xenial #24

2023-09-26 Thread kamailio--- via sr-dev
See 


___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] Jenkins build is back to normal : kamailio57-nightly-binaries » amd64,bionic #24

2023-09-26 Thread kamailio--- via sr-dev
See 


___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] Jenkins build is back to normal : kamailiodev-nightly-binaries » amd64,stretch #2493

2023-09-26 Thread kamailio--- via sr-dev
See 


___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] Jenkins build is back to normal : kamailio57-nightly-binaries » amd64,stretch #24

2023-09-26 Thread kamailio--- via sr-dev
See 


___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] Jenkins build is back to normal : kamailio57-nightly-binaries » amd64,bookworm #24

2023-09-26 Thread kamailio--- via sr-dev
See 


___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] Jenkins build is back to normal : kamailio57-nightly-binaries » amd64,focal #24

2023-09-26 Thread kamailio--- via sr-dev
See 


___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] Jenkins build is back to normal : kamailio57-nightly-binaries » amd64,jammy #24

2023-09-26 Thread kamailio--- via sr-dev
See 


___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] Jenkins build is back to normal : kamailiodev-nightly-binaries » amd64,xenial #2493

2023-09-26 Thread kamailio--- via sr-dev
See 


___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] Jenkins build is back to normal : kamailio57-nightly-binaries » amd64,bullseye #24

2023-09-26 Thread kamailio--- via sr-dev
See 


___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] Re: Releasing v5.7.2

2023-09-26 Thread Daniel-Constantin Mierla via sr-dev
Hello,

the v5.7.2 is going to be released today, therefore any commits to
branch 5.7 have to be announced to sr-dev and wait for ack before
pushing to github repository in order to avoid conflicts during release.
Once the announcement is out, commits can go to branch 5.7 as usual.

Cheers,
Daniel

On 25.09.23 08:06, Daniel-Constantin Mierla wrote:
> Hello,
>
> I am considering to release Kamailio v5.7.2 (out of branch 5.7) this
> week (likely on Wednesday or Thursday, Sep 27/28, 2023). If anyone is
> aware of issues not yet on the bug tracker, report them there asap in
> order to have a better chance to be fixed.
>
> Cheers,
> Daniel
>
> -- 
> Daniel-Constantin Mierla -- www.asipto.com
> www.twitter.com/miconda -- www.linkedin.com/in/miconda
> Kamailio World Conference - www.kamailioworld.com
>
-- 
Daniel-Constantin Mierla (@ asipto.com)
twitter.com/miconda -- linkedin.com/in/miconda
Kamailio Consultancy - Training Services -- asipto.com
Kamailio World Conference - kamailioworld.com

___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] git:5.7:5b31a87c: pkg: deb specs updated for v5.7.2

2023-09-26 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio
Branch: 5.7
Commit: 5b31a87cb90c4f81bc48b4f0f1fbd52825967de3
URL: 
https://github.com/kamailio/kamailio/commit/5b31a87cb90c4f81bc48b4f0f1fbd52825967de3

Author: Daniel-Constantin Mierla 
Committer: Daniel-Constantin Mierla 
Date: 2023-09-27T08:45:03+02:00

pkg: deb specs updated for v5.7.2

---

Modified: pkg/kamailio/deb/bionic/changelog
Modified: pkg/kamailio/deb/bookworm/changelog
Modified: pkg/kamailio/deb/bullseye/changelog
Modified: pkg/kamailio/deb/buster/changelog
Modified: pkg/kamailio/deb/debian/changelog
Modified: pkg/kamailio/deb/focal/changelog
Modified: pkg/kamailio/deb/jammy/changelog
Modified: pkg/kamailio/deb/jessie/changelog
Modified: pkg/kamailio/deb/precise/changelog
Modified: pkg/kamailio/deb/sid/changelog
Modified: pkg/kamailio/deb/stretch/changelog
Modified: pkg/kamailio/deb/trusty/changelog
Modified: pkg/kamailio/deb/wheezy/changelog
Modified: pkg/kamailio/deb/xenial/changelog

---

Diff:  
https://github.com/kamailio/kamailio/commit/5b31a87cb90c4f81bc48b4f0f1fbd52825967de3.diff
Patch: 
https://github.com/kamailio/kamailio/commit/5b31a87cb90c4f81bc48b4f0f1fbd52825967de3.patch

___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org


[sr-dev] git:5.7:549e7903: pkg: version set to 5.7.2 for rpms and alpine specs

2023-09-26 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio
Branch: 5.7
Commit: 549e7903ef40086d933c756b43e35a1d22a38401
URL: 
https://github.com/kamailio/kamailio/commit/549e7903ef40086d933c756b43e35a1d22a38401

Author: Daniel-Constantin Mierla 
Committer: Daniel-Constantin Mierla 
Date: 2023-09-27T08:43:49+02:00

pkg: version set to 5.7.2 for rpms and alpine specs

---

Modified: pkg/kamailio/alpine/APKBUILD
Modified: pkg/kamailio/obs/kamailio.spec

---

Diff:  
https://github.com/kamailio/kamailio/commit/549e7903ef40086d933c756b43e35a1d22a38401.diff
Patch: 
https://github.com/kamailio/kamailio/commit/549e7903ef40086d933c756b43e35a1d22a38401.patch

---

diff --git a/pkg/kamailio/alpine/APKBUILD b/pkg/kamailio/alpine/APKBUILD
index c07d5ace466..45ae00469f5 100644
--- a/pkg/kamailio/alpine/APKBUILD
+++ b/pkg/kamailio/alpine/APKBUILD
@@ -4,7 +4,7 @@
 # Maintainer: Nathan Angelacos 
 
 pkgname=kamailio
-pkgver=5.7.1
+pkgver=5.7.2
 pkgrel=0
 
 # If building from a git snapshot, specify the gitcommit
diff --git a/pkg/kamailio/obs/kamailio.spec b/pkg/kamailio/obs/kamailio.spec
index 9121e459bb6..d57ec65039a 100644
--- a/pkg/kamailio/obs/kamailio.spec
+++ b/pkg/kamailio/obs/kamailio.spec
@@ -1,5 +1,5 @@
 %define namekamailio
-%define ver 5.7.1
+%define ver 5.7.2
 %define rel dev1.0%{dist}
 
 %if 0%{?fedora}

___
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org