aboutsummaryrefslogtreecommitdiffstats
path: root/src/db_hlr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/db_hlr.c')
-rw-r--r--src/db_hlr.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/db_hlr.c b/src/db_hlr.c
index ba13324..c919f3e 100644
--- a/src/db_hlr.c
+++ b/src/db_hlr.c
@@ -505,6 +505,8 @@ static int db_sel(struct db_context *dbc, sqlite3_stmt *stmt, struct hlr_subscri
subscr->imsi, "CS");
parse_last_lu_seen(&subscr->last_lu_seen_ps, (const char *)sqlite3_column_text(stmt, 15),
subscr->imsi, "PS");
+ copy_sqlite3_text_to_ipa_name(&subscr->vlr_via_proxy, stmt, 16);
+ copy_sqlite3_text_to_ipa_name(&subscr->sgsn_via_proxy, stmt, 17);
out:
db_remove_reset(stmt);
@@ -750,6 +752,14 @@ int db_subscr_lu(struct db_context *dbc, int64_t subscr_id,
if (!db_bind_text(stmt, "$number", (char*)vlr_name->val))
return -EIO;
+ if (via_proxy && via_proxy->len) {
+ if (!db_bind_text(stmt, "$proxy", (char*)via_proxy->val))
+ return -EIO;
+ } else {
+ if (!db_bind_null(stmt, "$proxy"))
+ return -EIO;
+ }
+
/* execute the statement */
rc = sqlite3_step(stmt);
if (rc != SQLITE_DONE) {