Marius,
Just some ideas for the future. In order to move ahead with DNSsec and DANE - certificate handling - we
need an entry in the NAPTR, SRV and A records on whether they was verified with DNSsec. This propably
needs to be added to the resolver cache.
If they are all verified, we have a verified path and can check TLSA records for certificates or validation or CAs.
If not, we have to resort to traditional TLS.
Parse this as some random notes after reading up on the DANE drafts on SRV records. :-)
http://tools.ietf.org/html/draft-ietf-dane-srv-02
/O
Module: sip-router
Branch: master
Commit: ebeb18ffed8e81ae472b4c07097b58fbea115b5b
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=ebeb18f…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Sun Apr 21 16:07:34 2013 +0200
pv: updated link to wiki site
---
modules/pv/README | 8 ++++----
modules/pv/doc/pv_admin.xml | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/modules/pv/README b/modules/pv/README
index 64a9030..edfd000 100644
--- a/modules/pv/README
+++ b/modules/pv/README
@@ -103,7 +103,7 @@ Chapter 1. Admin Guide
This module collects the core pseudo-variables that can be used in
configuration file. They are listed in Dokuwiki:
- http://www.kamailio.org/dokuwiki/, in Pseudo-Variables section
+ http://www.kamailio.org/wiki/, in Pseudo-Variables section
2. Dependencies
@@ -219,7 +219,7 @@ if(pv_isset("$avp("s:x")"))
pv_unset("$avp("s:x")");
...
-4.3. is_int(pvar)
+4.3. is_int(pvar)
Function checks if pvar argument contains integer value and returns 1
if it does and -1 otherwise.
@@ -233,7 +233,7 @@ if (is_int("$var(foo)")) {
}
...
-4.4. typeof(pvar, vtype)
+4.4. typeof(pvar, vtype)
Returns true if the type of pseudo-variable matches the second
parameter. The second parameter can be: 'int' - type is integer; 'str'
@@ -248,7 +248,7 @@ if (typeof("$var(foo)", "str")) {
}
...
-4.5. not_empty(pvar)
+4.5. not_empty(pvar)
Returns true if the pseudo-variables has the type string and is not
empty value.
diff --git a/modules/pv/doc/pv_admin.xml b/modules/pv/doc/pv_admin.xml
index 884e1ad..c3f97cc 100644
--- a/modules/pv/doc/pv_admin.xml
+++ b/modules/pv/doc/pv_admin.xml
@@ -18,7 +18,7 @@
<para>
This module collects the core pseudo-variables that can be used in
configuration file. They are listed in Dokuwiki:
- <ulink url="http://www.kamailio.org/dokuwiki/">http://www.kamailio.org/dokuwiki/</ulink>,
+ <ulink url="http://www.kamailio.org/wiki/">http://www.kamailio.org/wiki/</ulink>,
in Pseudo-Variables section
</para>
</section>
Module: sip-router
Branch: master
Commit: f0c467f64c044de0b0f37addccb97d3ccff78706
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=f0c467f…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Sun Apr 21 16:06:56 2013 +0200
acc: updated link to pseudo-variables cookbook
---
modules/acc/README | 2 +-
modules/acc/doc/acc_admin.xml | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/acc/README b/modules/acc/README
index 27e586f..694f43d 100644
--- a/modules/acc/README
+++ b/modules/acc/README
@@ -400,7 +400,7 @@ if (uri=~"sip:+40") /* calls to Romania */ {
* extra_definition = log_name '=' pseudo_variable
The full list of supported pseudo-variables in Kamailio is available
- at: http://kamailio.org/dokuwiki/doku.php/pseudovariables:devel
+ at: http://www.kamailio.org/wiki/cookbooks/devel/pseudovariables
Note: For all the ACK processed by tm, the registered callbacks (like
acc module) will be called with the corresponding INVITE transaction
diff --git a/modules/acc/doc/acc_admin.xml b/modules/acc/doc/acc_admin.xml
index d418942..869ea8c 100644
--- a/modules/acc/doc/acc_admin.xml
+++ b/modules/acc/doc/acc_admin.xml
@@ -184,8 +184,8 @@ if (uri=~"sip:+40") /* calls to Romania */ {
<para>
The full list of supported pseudo-variables in &kamailio; is
available at:
- <ulink url="http://kamailio.org/dokuwiki/doku.php/pseudovariables:devel">
- http://kamailio.org/dokuwiki/doku.php/pseudovariables:devel</ulink>
+ <ulink url="http://www.kamailio.org/wiki/cookbooks/devel/pseudovariables">
+ http://www.kamailio.org/wiki/cookbooks/devel/pseudovariables</ulink>
</para>
<para>
Note: For all the ACK processed by tm, the registered callbacks
static param_export_t params[]={
{"sampling_time_unit", INT_PARAM, &time_unit},
{0,0,0}
};
This parameter doesn't seem to be used, nor is it documented in the README.
/O