Re: [OpenSIPS-Devel] [opensips] One Way or No Audio/Video Opensips 1.9.1 , Mediaproxy 2.5.2 and iptables 1.4.16.2 (#171)

2014-03-12 Thread Saúl Ibarra Corretgé
Hi @jalung. Thanks for comment. Do you have any links/docs regarding NOTRACK vs 
CT targets and supported versions?

As for why we need it, we first create those NOTRACK entries in the PREROUTING 
(table raw), then, after the conntrack rule has been created they are removed. 

---
Reply to this email directly or view it on GitHub:
https://github.com/OpenSIPS/opensips/issues/171#issuecomment-37382340___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


[OpenSIPS-Devel] GEtting the proper CSeq value from a module

2014-03-12 Thread Saúl Ibarra Corretgé
Hi all,

I'm trying to find the proper way to fix 
https://github.com/OpenSIPS/opensips/issues/165 since we are close to a 
release. I need to obtain the CSeq value for a request/response, but get_cseq 
is not going to cut it. If dialog ping is used it could be internally mangled, 
so I want the mangled value.

I thought I could get the cseq_n value from the transaction as in 
https://github.com/OpenSIPS/opensips/blob/master/modules/tm/h_table.h#L235-L240 
but unfortunately the docs disagree with the real world. cseq_n contains 
doesn't contain the number but the header itself.

The aforementioned issue raises because the header is something like CSeq:42 
(note the lack of a space). So it looks like I'd need to manually parse the 
CSeq header here?!

So, TLDR, how is a module supposed to get the CSeq for a request/response, even 
in the case OpenSIPS modifies it?


Thanks,

--
Saúl Ibarra Corretgé
AG Projects




___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


[OpenSIPS-Devel] [opensips] xcap_client: Fix two mem corruptions. (#176)

2014-03-12 Thread Walter Doekes
See the two commits:

- in both cases the first item of the linked list is not freed,
- the freed memory is read
- lastly a NULL is freed (or in the second case, a NULL-dereference)
You can merge this Pull Request by running:

  git pull https://github.com/wdoekes/opensips wjd-xcapclient_mem_corrupt

Or you can view, comment on it, or merge it online at:

  https://github.com/OpenSIPS/opensips/pull/176

-- Commit Summary --

  * xcap_client: Fix possible memory curruption in destroy_xcapcb_list.
  * xcap_client: Fix memory leak and possible corruption in xcapFreeNodeSel.

-- File Changes --

M modules/xcap_client/xcap_callbacks.c (6)
M modules/xcap_client/xcap_functions.c (4)

-- Patch Links --

https://github.com/OpenSIPS/opensips/pull/176.patch
https://github.com/OpenSIPS/opensips/pull/176.diff

---
Reply to this email directly or view it on GitHub:
https://github.com/OpenSIPS/opensips/pull/176
___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


Re: [OpenSIPS-Devel] [opensips] xcap_client: Fix two mem corruptions. (#176)

2014-03-12 Thread Saúl Ibarra Corretgé
LGTM.

---
Reply to this email directly or view it on GitHub:
https://github.com/OpenSIPS/opensips/pull/176#issuecomment-37389015___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


[OpenSIPS-Devel] [opensips] presence_dialoginfo: Fix bounds checking by using a helper function. (#177)

2014-03-12 Thread Walter Doekes
Reported by: dsandras
gt; About the bound checking error, the code was cutamp;pasted from another
gt; place in the same file where the same error is still present:
gt; ...

Also I replaced a heap str with a stack one in build_dialoginfo. This
one wasn#39;t freed either unless an error condition was hit.
You can merge this Pull Request by running:

  git pull https://github.com/wdoekes/opensips wjd-fix_dialogaggr_bounds

Or you can view, comment on it, or merge it online at:

  https://github.com/OpenSIPS/opensips/pull/177

-- Commit Summary --

  * presence_dialoginfo: Fix bounds checking by using a helper function.

-- File Changes --

M modules/presence_dialoginfo/notify_body.c (75)

-- Patch Links --

https://github.com/OpenSIPS/opensips/pull/177.patch
https://github.com/OpenSIPS/opensips/pull/177.diff

---
Reply to this email directly or view it on GitHub:
https://github.com/OpenSIPS/opensips/pull/177
___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


Re: [OpenSIPS-Devel] [opensips] presence_dialoginfo: Fix bounds checking by using a helper function. (#177)

2014-03-12 Thread Walter Doekes
   return NULL;
 - }
 - memcpy(buf, sip:, 4);
 - memcpy(buf+4, pres_user-s, pres_user-len);
 - buf[pres_user-len+4] = '@';
 - memcpy(buf + pres_user-len + 5, pres_domain-s, pres_domain-len);
 - buf[pres_user-len + 5 + pres_domain-len]= '\0';
 -
 - pres_uri = (str*)pkg_malloc(sizeof(str));
 - if(pres_uri == NULL)
 - {
 - LM_ERR(while allocating memory\n);
 - return NULL;
 - }
 - memset(pres_uri, 0, sizeof(str));

Memset just before setting it.

---
Reply to this email directly or view it on GitHub:
https://github.com/OpenSIPS/opensips/pull/177/files#r10510194___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


Re: [OpenSIPS-Devel] [opensips] presence_dialoginfo: Fix bounds checking by using a helper function. (#177)

2014-03-12 Thread Walter Doekes
 @@ -444,10 +429,6 @@ str* build_dialoginfo(str* pres_user, str* pres_domain)
   xmlCleanupParser();
   return body;
  error:
 - if ( pres_uri )
 - {
 - pkg_free(pres_uri);

Here it was freed, but it wasn't when the function returned succesfully.

---
Reply to this email directly or view it on GitHub:
https://github.com/OpenSIPS/opensips/pull/177/files#r10510217___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


Re: [OpenSIPS-Devel] [opensips] Fix examples, some presence settings have moved (#76)

2014-03-12 Thread Liviu Chircu
Closed #76.

---
Reply to this email directly or view it on GitHub:
https://github.com/OpenSIPS/opensips/issues/76___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


Re: [OpenSIPS-Devel] GEtting the proper CSeq value from a module

2014-03-12 Thread Vlad Paiu

Hello,

Indeed in the case of the in-dialog pinging, the cseq might change and 
get_cseq is not going to be accurate for such cases.


What we can do is to have the dialog module change the number pointer in 
the actual cseq parsed structure to point to the lump added by the 
dialog module in case of pinging ( very similar to what 
fix_nated_contact is doing when fixing the contact header ).


Alternatively, if you're using the TM module to get the actual CSEQ 
header, you can use parse_cseq() from parser/parse_cseq.h to extract the 
actual CSEQ number.


Best Regards,

Vlad Paiu
OpenSIPS Developer
http://www.opensips-solutions.com

On 12.03.2014 09:48, Saúl Ibarra Corretgé wrote:

Hi all,

I'm trying to find the proper way to fix 
https://github.com/OpenSIPS/opensips/issues/165 since we are close to a 
release. I need to obtain the CSeq value for a request/response, but get_cseq 
is not going to cut it. If dialog ping is used it could be internally mangled, 
so I want the mangled value.

I thought I could get the cseq_n value from the transaction as in 
https://github.com/OpenSIPS/opensips/blob/master/modules/tm/h_table.h#L235-L240 
but unfortunately the docs disagree with the real world. cseq_n contains 
doesn't contain the number but the header itself.

The aforementioned issue raises because the header is something like CSeq:42 
(note the lack of a space). So it looks like I'd need to manually parse the CSeq header 
here?!

So, TLDR, how is a module supposed to get the CSeq for a request/response, even 
in the case OpenSIPS modifies it?


Thanks,

--
Saúl Ibarra Corretgé
AG Projects




___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel



___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


Re: [OpenSIPS-Devel] GEtting the proper CSeq value from a module

2014-03-12 Thread Saúl Ibarra Corretgé
Hi Vlad,

On Mar 12, 2014, at 11:47 AM, Vlad Paiu wrote:

 Hello,
 
 Indeed in the case of the in-dialog pinging, the cseq might change and 
 get_cseq is not going to be accurate for such cases.
 
 What we can do is to have the dialog module change the number pointer in the 
 actual cseq parsed structure to point to the lump added by the dialog module 
 in case of pinging ( very similar to what fix_nated_contact is doing when 
 fixing the contact header ).
 

That would be nice.

 Alternatively, if you're using the TM module to get the actual CSEQ header, 
 you can use parse_cseq() from parser/parse_cseq.h to extract the actual CSEQ 
 number.
 

Actually, I'm not sure what I'm doing is correct, if the cseq_n from the 
transaction supposed to be updated already in case dialog ping is enabled?


Regards,

--
Saúl Ibarra Corretgé
AG Projects




___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


[OpenSIPS-Devel] [OpenSIPS/opensips] 2520b8: For topo hiding and fix_route_dialog() usage, do n...

2014-03-12 Thread Vlad Paiu
  Branch: refs/heads/master
  Home:   https://github.com/OpenSIPS/opensips
  Commit: 2520b8ac539e4fab25348369160727914f9f9670
  
https://github.com/OpenSIPS/opensips/commit/2520b8ac539e4fab25348369160727914f9f9670
  Author: Vlad Paiu vladp...@opensips.org
  Date:   2014-03-12 (Wed, 12 Mar 2014)

  Changed paths:
M modules/dialog/dlg_handlers.c

  Log Message:
  ---
  For topo hiding and fix_route_dialog() usage, do not try do add del lumps for 
already deleted route headers
(cherry picked from commit 5a119db9031d6231c521367847bf1b3c1b6bb7a5)


___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


[OpenSIPS-Devel] [OpenSIPS/opensips] 5b62ff: For topo hiding and fix_route_dialog() usage, do n...

2014-03-12 Thread Vlad Paiu
  Branch: refs/heads/1.8
  Home:   https://github.com/OpenSIPS/opensips
  Commit: 5b62ff1b26032590137df550fc766dbb3e62d8d0
  
https://github.com/OpenSIPS/opensips/commit/5b62ff1b26032590137df550fc766dbb3e62d8d0
  Author: Vlad Paiu vladp...@opensips.org
  Date:   2014-03-12 (Wed, 12 Mar 2014)

  Changed paths:
M modules/dialog/dlg_handlers.c

  Log Message:
  ---
  For topo hiding and fix_route_dialog() usage, do not try do add del lumps for 
already deleted route headers
(cherry picked from commit 5a119db9031d6231c521367847bf1b3c1b6bb7a5)


___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


[OpenSIPS-Devel] [OpenSIPS/opensips] 26bdb5: For topo hiding and fix_route_dialog() usage, do n...

2014-03-12 Thread Vlad Paiu
  Branch: refs/heads/1.9
  Home:   https://github.com/OpenSIPS/opensips
  Commit: 26bdb57dfbca35efa00bfa593c1cc6ff662c49d3
  
https://github.com/OpenSIPS/opensips/commit/26bdb57dfbca35efa00bfa593c1cc6ff662c49d3
  Author: Vlad Paiu vladp...@opensips.org
  Date:   2014-03-12 (Wed, 12 Mar 2014)

  Changed paths:
M modules/dialog/dlg_handlers.c

  Log Message:
  ---
  For topo hiding and fix_route_dialog() usage, do not try do add del lumps for 
already deleted route headers
(cherry picked from commit 5a119db9031d6231c521367847bf1b3c1b6bb7a5)


___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


[OpenSIPS-Devel] [OpenSIPS/opensips] 1e2622: Added support for embedded arrays within MongoDB d...

2014-03-12 Thread Vlad Paiu
  Branch: refs/heads/1.10
  Home:   https://github.com/OpenSIPS/opensips
  Commit: 1e2622fa02c77bb0a0289ac9ef711f9423511e44
  
https://github.com/OpenSIPS/opensips/commit/1e2622fa02c77bb0a0289ac9ef711f9423511e44
  Author: Vlad Paiu vladp...@opensips.org
  Date:   2014-03-12 (Wed, 12 Mar 2014)

  Changed paths:
M modules/cachedb_mongodb/cachedb_mongodb_dbase.c
M modules/cachedb_mongodb/cachedb_mongodb_json.c

  Log Message:
  ---
  Added support for embedded arrays within MongoDB documents
(cherry picked from commit 61e21a0a2d9d79b91e5e8692a7c1f3e7cc77cf83)


___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


[OpenSIPS-Devel] [OpenSIPS/opensips] 0ae9a4: Added support for embedded arrays within MongoDB d...

2014-03-12 Thread Vlad Paiu
  Branch: refs/heads/1.9
  Home:   https://github.com/OpenSIPS/opensips
  Commit: 0ae9a468f301ae987ae925271238172a8082f489
  
https://github.com/OpenSIPS/opensips/commit/0ae9a468f301ae987ae925271238172a8082f489
  Author: Vlad Paiu vladp...@opensips.org
  Date:   2014-03-12 (Wed, 12 Mar 2014)

  Changed paths:
M modules/cachedb_mongodb/cachedb_mongodb_dbase.c
M modules/cachedb_mongodb/cachedb_mongodb_json.c

  Log Message:
  ---
  Added support for embedded arrays within MongoDB documents
(cherry picked from commit 61e21a0a2d9d79b91e5e8692a7c1f3e7cc77cf83)


___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


[OpenSIPS-Devel] [OpenSIPS/opensips] b850f6: update changelog file for 1.8.4

2014-03-12 Thread Razvan Crainea
  Branch: refs/heads/1.8
  Home:   https://github.com/OpenSIPS/opensips
  Commit: b850f67e6700abe9932636fb3a1b080cc3582017
  
https://github.com/OpenSIPS/opensips/commit/b850f67e6700abe9932636fb3a1b080cc3582017
  Author: Razvan Crainea raz...@opensips.org
  Date:   2014-03-12 (Wed, 12 Mar 2014)

  Changed paths:
M ChangeLog

  Log Message:
  ---
  update changelog file for 1.8.4


  Commit: 3d888f34163af886b03cc9fbc076995171383680
  
https://github.com/OpenSIPS/opensips/commit/3d888f34163af886b03cc9fbc076995171383680
  Author: Razvan Crainea raz...@opensips.org
  Date:   2014-03-12 (Wed, 12 Mar 2014)

  Changed paths:
M Makefile.defs

  Log Message:
  ---
  update Makefile.defs for 1.8.4


  Commit: 500b72ef00499529b42cdc1e9c8e9a6601b9f2b0
  
https://github.com/OpenSIPS/opensips/commit/500b72ef00499529b42cdc1e9c8e9a6601b9f2b0
  Author: Razvan Crainea raz...@opensips.org
  Date:   2014-03-12 (Wed, 12 Mar 2014)

  Changed paths:
M packaging/debian-lenny/changelog
M packaging/debian/changelog
M packaging/fedora/opensips.spec
M packaging/freebsd/Makefile
R packaging/gentoo/opensips-1.8.3.ebuild
A packaging/gentoo/opensips-1.8.4.ebuild
M packaging/netbsd/Makefile
M packaging/openbsd/Makefile
M packaging/rpm/opensips.spec.CentOS
M packaging/rpm/opensips.spec.SuSE
M packaging/solaris/base-pkginfo
M packaging/solaris/berkeley-pkginfo
M packaging/solaris/carrierroute-pkginfo
M packaging/solaris/identity-pkginfo
M packaging/solaris/ldap-pkginfo
M packaging/solaris/mmgeoip-pkginfo
M packaging/solaris/mysql-pkginfo
M packaging/solaris/perl-pkginfo
M packaging/solaris/pgsql-pkginfo
M packaging/solaris/regex-pkginfo
M packaging/solaris/snmp-pkginfo
M packaging/solaris/tls-pkginfo
M packaging/solaris/xmlrpc-pkginfo

  Log Message:
  ---
  update specs for 1.8.4


Compare: 
https://github.com/OpenSIPS/opensips/compare/5b62ff1b2603...500b72ef0049___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


Re: [OpenSIPS-Devel] [OpenSIPS/opensips] 618546: update ChangeLog file for 1.9.2

2014-03-12 Thread Saúl Ibarra Corretgé
I think it's time we dump Debian lenny, at least on master :-)

On Mar 12, 2014, at 5:13 PM, Razvan Crainea wrote:

  Branch: refs/heads/1.9
  Home:   https://github.com/OpenSIPS/opensips
  Commit: 6185467474cfb78b8974694313d11f5d2e548bbd
  
 https://github.com/OpenSIPS/opensips/commit/6185467474cfb78b8974694313d11f5d2e548bbd
  Author: Razvan Crainea raz...@opensips.org
  Date:   2014-03-12 (Wed, 12 Mar 2014)
 
  Changed paths:
M ChangeLog
 
  Log Message:
  ---
  update ChangeLog file for 1.9.2
 
 
  Commit: 19c03db7b0f4e07a35b158e9dbc357fab4d6af3d
  
 https://github.com/OpenSIPS/opensips/commit/19c03db7b0f4e07a35b158e9dbc357fab4d6af3d
  Author: Razvan Crainea raz...@opensips.org
  Date:   2014-03-12 (Wed, 12 Mar 2014)
 
  Changed paths:
M Makefile.defs
 
  Log Message:
  ---
  update Makefile for 1.9.2
 
 
  Commit: 8fd8407c5078c2933ab942fa6e89165d88b95a42
  
 https://github.com/OpenSIPS/opensips/commit/8fd8407c5078c2933ab942fa6e89165d88b95a42
  Author: Razvan Crainea raz...@opensips.org
  Date:   2014-03-12 (Wed, 12 Mar 2014)
 
  Changed paths:
M packaging/debian-lenny/changelog
M packaging/debian/changelog
M packaging/fedora/opensips.spec
R packaging/gentoo/opensips-1.9.1.ebuild
A packaging/gentoo/opensips-1.9.2.ebuild
M packaging/netbsd/Makefile
M packaging/openbsd/Makefile
M packaging/rpm/opensips.spec.CentOS
M packaging/rpm/opensips.spec.SuSE
M packaging/solaris/base-pkginfo
M packaging/solaris/berkeley-pkginfo
M packaging/solaris/carrierroute-pkginfo
M packaging/solaris/identity-pkginfo
M packaging/solaris/ldap-pkginfo
M packaging/solaris/mmgeoip-pkginfo
M packaging/solaris/mysql-pkginfo
M packaging/solaris/perl-pkginfo
M packaging/solaris/pgsql-pkginfo
M packaging/solaris/regex-pkginfo
M packaging/solaris/snmp-pkginfo
M packaging/solaris/tls-pkginfo
M packaging/solaris/xmlrpc-pkginfo
 
  Log Message:
  ---
  update specs for 1.9.2
 
 
 Compare: 
 https://github.com/OpenSIPS/opensips/compare/0ae9a468f301...8fd8407c5078___
 Devel mailing list
 Devel@lists.opensips.org
 http://lists.opensips.org/cgi-bin/mailman/listinfo/devel

--
Saúl Ibarra Corretgé
AG Projects




___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


[OpenSIPS-Devel] [OpenSIPS/opensips]

2014-03-12 Thread razvancrainea
  Branch: refs/tags/1.9.2
  Home:   https://github.com/OpenSIPS/opensips
___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


[OpenSIPS-Devel] [OpenSIPS/opensips]

2014-03-12 Thread razvancrainea
  Branch: refs/tags/1.10.1
  Home:   https://github.com/OpenSIPS/opensips
___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


[OpenSIPS-Devel] [OpenSIPS/opensips]

2014-03-12 Thread razvancrainea
  Branch: refs/tags/1.8.4
  Home:   https://github.com/OpenSIPS/opensips
___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


Re: [OpenSIPS-Devel] [OpenSIPS/opensips] 618546: update ChangeLog file for 1.9.2

2014-03-12 Thread Răzvan Crainea
Yes, I think that's a good idea. If nobody has any objections, we'll get 
rid of the debian-lenny in the master branch.


Best regards,

Razvan Crainea
OpenSIPS Core Developer
http://www.opensips-solutions.com

On 03/12/2014 06:21 PM, Saúl Ibarra Corretgé wrote:

I think it's time we dump Debian lenny, at least on master :-)

On Mar 12, 2014, at 5:13 PM, Razvan Crainea wrote:


  Branch: refs/heads/1.9
  Home:   https://github.com/OpenSIPS/opensips
  Commit: 6185467474cfb78b8974694313d11f5d2e548bbd
  
https://github.com/OpenSIPS/opensips/commit/6185467474cfb78b8974694313d11f5d2e548bbd
  Author: Razvan Crainea raz...@opensips.org
  Date:   2014-03-12 (Wed, 12 Mar 2014)

  Changed paths:
M ChangeLog

  Log Message:
  ---
  update ChangeLog file for 1.9.2


  Commit: 19c03db7b0f4e07a35b158e9dbc357fab4d6af3d
  
https://github.com/OpenSIPS/opensips/commit/19c03db7b0f4e07a35b158e9dbc357fab4d6af3d
  Author: Razvan Crainea raz...@opensips.org
  Date:   2014-03-12 (Wed, 12 Mar 2014)

  Changed paths:
M Makefile.defs

  Log Message:
  ---
  update Makefile for 1.9.2


  Commit: 8fd8407c5078c2933ab942fa6e89165d88b95a42
  
https://github.com/OpenSIPS/opensips/commit/8fd8407c5078c2933ab942fa6e89165d88b95a42
  Author: Razvan Crainea raz...@opensips.org
  Date:   2014-03-12 (Wed, 12 Mar 2014)

  Changed paths:
M packaging/debian-lenny/changelog
M packaging/debian/changelog
M packaging/fedora/opensips.spec
R packaging/gentoo/opensips-1.9.1.ebuild
A packaging/gentoo/opensips-1.9.2.ebuild
M packaging/netbsd/Makefile
M packaging/openbsd/Makefile
M packaging/rpm/opensips.spec.CentOS
M packaging/rpm/opensips.spec.SuSE
M packaging/solaris/base-pkginfo
M packaging/solaris/berkeley-pkginfo
M packaging/solaris/carrierroute-pkginfo
M packaging/solaris/identity-pkginfo
M packaging/solaris/ldap-pkginfo
M packaging/solaris/mmgeoip-pkginfo
M packaging/solaris/mysql-pkginfo
M packaging/solaris/perl-pkginfo
M packaging/solaris/pgsql-pkginfo
M packaging/solaris/regex-pkginfo
M packaging/solaris/snmp-pkginfo
M packaging/solaris/tls-pkginfo
M packaging/solaris/xmlrpc-pkginfo

  Log Message:
  ---
  update specs for 1.9.2


Compare: 
https://github.com/OpenSIPS/opensips/compare/0ae9a468f301...8fd8407c5078___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


--
Saúl Ibarra Corretgé
AG Projects





___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


Re: [OpenSIPS-Devel] [RELEASE] OpenSIPS 1.8.4/1.9.2/1.10.1 Minor Versions

2014-03-12 Thread Răzvan Crainea

Hi, all!

Just wanted to let you know that we have just released three new minor 
versions of OpenSIPS:


* OpenSIPS 1.8.4: http://opensips.org/pub/opensips/1.8.4/src/
* OpenSIPS 1.9.2: http://opensips.org/pub/opensips/1.9.2/src/
* OpenSIPS 1.10.1: http://opensips.org/pub/opensips/1.10.1/src/

All versions are stable and include all the latest fixes. Enjoy!

Best regards,

Razvan Crainea
OpenSIPS Core Developer
http://www.opensips-solutions.com

On 03/10/2014 06:38 PM, Răzvan Crainea wrote:

Hello, all!

We are proud to announce you that during this week, we'll be releasing
three new OpenSIPS minor versions: 1.8.4, 1.9.2 and 1.10.1. All of them
will include the latest fixes we've done during the last 6 months. If
you have any other outstanding issues, please report them asap on the
GitHub tracker[1].

[1] https://github.com/OpenSIPS/opensips/issues

Thank you all for your help!


___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


Re: [OpenSIPS-Devel] [opensips] presence_dialoginfo: Fix memory leak in dlginfo_agg_nbody. (#174)

2014-03-12 Thread Bogdan Andrei IANCU
Hi @dsandras , could you also confirm that the applied patch fixes the mem 
leaks you are aware about ?

Thanks and regards,
Bogdan

---
Reply to this email directly or view it on GitHub:
https://github.com/OpenSIPS/opensips/pull/174#issuecomment-37464157___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel


Re: [OpenSIPS-Devel] [opensips] One Way or No Audio/Video Opensips 1.9.1 , Mediaproxy 2.5.2 and iptables 1.4.16.2 (#171)

2014-03-12 Thread jalung
Hi Saghul,

There is some information here:
http://cateee.net/lkddb/web-lkddb/NETFILTER_XT_TARGET_NOTRACK.html

Below is a piece of log when mediaproxy is engaged.

Feb 22 23:20:34 sip /usr/sbin/opensips[2033]: Call control: user 
sip:xxx...@example.net currently has: 1 call(s), Limit 2
Feb 22 23:20:34 sip /usr/sbin/opensips[2033]: Call with a limit under 
callcontrol management
Feb 22 23:20:34 sip /usr/sbin/opensips[2033]: NEW branch_route method=INVITE 
RURI=sip:xx@00.00.00.00:5080 FROM=sip:xxx...@example.net 
IP=xx.xx.xx.xx port=5060 protocol=udp
Feb 22 23:20:38 sip /usr/sbin/opensips[2044]: ACC: transaction answered: 
timestamp=1393111238;method=INVITE;from_tag=4859;to_tag=qQD.kPbGmYh.ADDWm6gyeyOloj9fhkZT;call_id=21804;code=200;reason=OK
Feb 22 23:20:38 sip kernel: [ 3228.062171] xt_CT: netfilter: NOTRACK target is 
deprecated, use CT instead or upgrade iptables

The upgrade iptables may be misleading.

---
Reply to this email directly or view it on GitHub:
https://github.com/OpenSIPS/opensips/issues/171#issuecomment-37482214___
Devel mailing list
Devel@lists.opensips.org
http://lists.opensips.org/cgi-bin/mailman/listinfo/devel