THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#341 - presence_dialoginfo -> force_single doesn't sent most relevant xml
User who did this - Daniel-Constantin Mierla (miconda)
----------
I see that the patch doesn't handle trying and proceeding states, from what was before. Any reason for it?
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=341#comment1149
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
Hi,
I've added database support to the dialog_ng module and I wonder if I
should push the changes to master or should I create a new branch to
maintain these changes while the testing phase lasts.
What would you recommend?
Thanks,
--
Carlos
http://caruizdiaz.com
+595981146623
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#341 - presence_dialoginfo -> force_single doesn't sent most relevant xml
User who did this - Devs Voicenter (voicenter)
----------
Sorry i was out for few weeks.
Are this format(replaced spaces to tab with vim) and code ( got rid of extra for loop and put everything in one place) better?
----------
One or more files have been attached.
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=341#comment1148
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task is now closed:
FS#350 - pua_reginfo: Duplicate contacts in the location table
User who did this - Daniel-Constantin Mierla (miconda)
Reason for closing: Fixed
More information can be found at the following URL:
https://sip-router.org/tracker/index.php?do=details&task_id=350
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#350 - pua_reginfo: Duplicate contacts in the location table
User who did this - Daniel-Constantin Mierla (miconda)
----------
Thanks. Patch was applied to master branch. It didn't work on branch 4.0, I guess some other patches will have to be backported first -- I will look over soon.
----------
More information can be found at the following URL:
https://sip-router.org/tracker/index.php?do=details&task_id=350#comment1147
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#350 - pua_reginfo: Duplicate contacts in the location table
User who did this - Wonbin Cho (wbcho)
----------
I edited from the git clone as you suggested.
Looks much better to me. Hope it works this time. :)
Thank you!
----------
One or more files have been attached.
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=350#comment1146
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
Module: sip-router
Branch: master
Commit: 1e2bb79a135bef9936fb5d5e0fb9a708589452b9
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=1e2bb79…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Sun Nov 3 13:14:31 2013 +0100
tls: listed TLSv1.1 and TLSv1.2 as values for tls_method parameter
---
modules/tls/doc/params.xml | 25 ++++++++++++++++++++++---
1 files changed, 22 insertions(+), 3 deletions(-)
diff --git a/modules/tls/doc/params.xml b/modules/tls/doc/params.xml
index 46c9618..54c21e7 100644
--- a/modules/tls/doc/params.xml
+++ b/modules/tls/doc/params.xml
@@ -21,7 +21,20 @@
<itemizedlist>
<listitem>
<para>
- <emphasis>TLSv1</emphasis> - only TLSv1 connections are accepted. This is the default and recommended method (if you want to be rfc3261 conformant don't change it).
+ <emphasis>TLSv1.1</emphasis> - only TLSv1.2 connections are accepted
+ (available starting with openssl/libssl v1.0.1e)
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis>TLSv1.1</emphasis> - only TLSv1.1 connections are accepted
+ (available starting with openssl/libssl v1.0.0)
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <emphasis>TLSv1</emphasis> - only TLSv1 connections are accepted.
+ This is the default value.
</para>
</listitem>
<listitem>
@@ -31,12 +44,18 @@
</listitem>
<listitem>
<para>
- <emphasis>SSLv2</emphasis> - only SSLv2 connections, for old clients. Note: you shouldn't use SSLv2 for anything which should be highly secure.
+ <emphasis>SSLv2</emphasis> - only SSLv2 connections, for old clients.
+ Note: you shouldn't use SSLv2 for anything which should be highly secure.
+ Newer versions of libssl don't include support for it anymore.
</para>
</listitem>
<listitem>
<para>
- <emphasis>SSLv23</emphasis> - any of the above methods will be accepted, with the following limitation: the initial SSL hello message must be V2 (in the initial hello all the supported protocols are advertised enabling switching to a higher and more secure version). This means connections from SSLv3 or TLSv1 clients will not be accepted.
+ <emphasis>SSLv23</emphasis> - any of the SSLv2, SSLv3 and TLSv1 methods
+ will be accepted, with the following limitation: the initial SSL hello
+ message must be V2 (in the initial hello all the supported protocols
+ are advertised enabling switching to a higher and more secure version).
+ This means connections from SSLv3 or TLSv1 clients will be accepted.
</para>
</listitem>
</itemizedlist>