[sr-dev] git:master: auth_db: option to skip checking version table

Daniel-Constantin Mierla miconda at gmail.com
Fri Jun 24 20:48:11 CEST 2011


Module: sip-router
Branch: master
Commit: 1a25853ea728711937794402a4aaa556fa69be73
URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=1a25853ea728711937794402a4aaa556fa69be73

Author: Daniel-Constantin Mierla <miconda at gmail.com>
Committer: Daniel-Constantin Mierla <miconda at gmail.com>
Date:   Fri Jun 24 20:46:11 2011 +0200

auth_db: option to skip checking version table

- new parameter 'version_table' to be able to disable checking for
  version table
- useful when connecting to a different database to fetch the password

---

 modules_k/auth_db/authdb_mod.c |   22 +++++++++++++---------
 1 files changed, 13 insertions(+), 9 deletions(-)

diff --git a/modules_k/auth_db/authdb_mod.c b/modules_k/auth_db/authdb_mod.c
index ba78ef3..e74fff0 100644
--- a/modules_k/auth_db/authdb_mod.c
+++ b/modules_k/auth_db/authdb_mod.c
@@ -93,6 +93,7 @@ str domain_column           = {DOMAIN_COL, DOMAIN_COL_LEN};
 str pass_column             = {PASS_COL, PASS_COL_LEN};
 str pass_column_2           = {PASS_COL_2, PASS_COL_2_LEN};
 
+static int version_table_check = 1;
 
 int calc_ha1                = 0;
 int use_domain              = 0; /* Use also domain when looking up in table */
@@ -127,14 +128,15 @@ static cmd_export_t cmds[] = {
  * Exported parameters
  */
 static param_export_t params[] = {
-	{"db_url",            STR_PARAM, &db_url.s           },
-	{"user_column",       STR_PARAM, &user_column.s      },
-	{"domain_column",     STR_PARAM, &domain_column.s    },
-	{"password_column",   STR_PARAM, &pass_column.s      },
-	{"password_column_2", STR_PARAM, &pass_column_2.s    },
-	{"calculate_ha1",     INT_PARAM, &calc_ha1           },
-	{"use_domain",        INT_PARAM, &use_domain         },
-	{"load_credentials",  STR_PARAM, &credentials_list   },
+	{"db_url",            STR_PARAM, &db_url.s            },
+	{"user_column",       STR_PARAM, &user_column.s       },
+	{"domain_column",     STR_PARAM, &domain_column.s     },
+	{"password_column",   STR_PARAM, &pass_column.s       },
+	{"password_column_2", STR_PARAM, &pass_column_2.s     },
+	{"calculate_ha1",     INT_PARAM, &calc_ha1            },
+	{"use_domain",        INT_PARAM, &use_domain          },
+	{"load_credentials",  STR_PARAM, &credentials_list    },
+	{"version_table",     INT_PARAM, &version_table_check },
 	{0, 0, 0}
 };
 
@@ -250,7 +252,9 @@ static int auth_fixup(void** param, int param_no)
 			LM_ERR("unable to open database connection\n");
 			return -1;
 		}
-		if(db_check_table_version(&auth_dbf, dbh, &name, TABLE_VERSION) < 0) {
+		if(version_table_check!=0
+				&& db_check_table_version(&auth_dbf, dbh, &name,
+					TABLE_VERSION) < 0) {
 			LM_ERR("error during table version check.\n");
 			auth_dbf.close(dbh);
 			return -1;




More information about the sr-dev mailing list