diff --git a/src/lib/srdb1/schema/entities.xml b/src/lib/srdb1/schema/entities.xml index 3fb0bd16cd0..506771361bf 100644 --- a/src/lib/srdb1/schema/entities.xml +++ b/src/lib/srdb1/schema/entities.xml @@ -8,6 +8,7 @@ + diff --git a/src/lib/srdb1/schema/location.xml b/src/lib/srdb1/schema/location.xml index 1786f4a75c8..01f66fe6ced 100644 --- a/src/lib/srdb1/schema/location.xml +++ b/src/lib/srdb1/schema/location.xml @@ -9,7 +9,7 @@ location - 8 + 9&MYSQL_TABLE_TYPE; Persistent user location information for the usrloc module. @@ -63,7 +63,7 @@ contact string - &hf_len; + &contact_len; Contact header field value provides a URI whoses meaning depends on the type of request or response it is in. diff --git a/src/modules/registrar/doc/registrar_admin.xml b/src/modules/registrar/doc/registrar_admin.xml index 58ea0346d1c..00b68018b89 100644 --- a/src/modules/registrar/doc/registrar_admin.xml +++ b/src/modules/registrar/doc/registrar_admin.xml @@ -948,14 +948,14 @@ modparam("registrar", "flow_timer", 25) - Default value is 255. + Default value is 512. Set <varname>contact_max_size</varname> parameter ... -modparam("registrar", "contact_max_size", 500) +modparam("registrar", "contact_max_size", 1024) ... diff --git a/src/modules/registrar/registrar.c b/src/modules/registrar/registrar.c index fbd2465f4c2..4a8d245ac2d 100644 --- a/src/modules/registrar/registrar.c +++ b/src/modules/registrar/registrar.c @@ -106,7 +106,7 @@ int reg_outbound_mode = 0; int reg_regid_mode = 0; int reg_flow_timer = 0; -int contact_max_size = 255; /* max size of contact URIs */ +int contact_max_size = 512; /* max size of contact URIs */ str match_callid_name = str_init("match_callid"); str match_received_name = str_init("match_received"); diff --git a/src/modules/usrloc/usrloc_mod.h b/src/modules/usrloc/usrloc_mod.h index ccd9540ecfd..5ac67d67ed5 100644 --- a/src/modules/usrloc/usrloc_mod.h +++ b/src/modules/usrloc/usrloc_mod.h @@ -39,7 +39,7 @@ */ -#define UL_TABLE_VERSION 8 +#define UL_TABLE_VERSION 9 extern str ruid_col; extern str user_col;