|
From: <do_...@wu...> - 2011-11-18 22:09:52
|
Author: kurtis.heimerl
Date: 2011-11-18 16:09:44 -0600 (Fri, 18 Nov 2011)
New Revision: 2570
Added:
software/public/subscriberRegistry/trunk/sipauthserve.example.sql
Modified:
software/public/openbts/trunk/apps/OpenBTS.example.sql
software/public/subscriberRegistry/trunk/sipauthserve.cpp
Log:
moved sipauthserve to it's own database
Modified: software/public/openbts/trunk/apps/OpenBTS.example.sql
===================================================================
--- software/public/openbts/trunk/apps/OpenBTS.example.sql 2011-11-18 18:48:28 UTC (rev 2569)
+++ software/public/openbts/trunk/apps/OpenBTS.example.sql 2011-11-18 22:09:44 UTC (rev 2570)
@@ -113,7 +113,6 @@
INSERT INTO "CONFIG" VALUES('SubscriberRegistry.Manager.Url','http://127.0.0.1/cgi/srmanager.cgi',0,0,'URL of the subscriber registry database manager.');
INSERT INTO "CONFIG" VALUES('SubscriberRegistry.Manager.VisibleColumns','name username type context host',0,0,'Field names in subscriber registry visible in the database manager.');
INSERT INTO "CONFIG" VALUES('SubscriberRegistry.db','/var/lib/asterisk/sqlite3dir/sqlite3.db',0,0,'The location of the sqlite3 database holding the subscriber registry.');
-INSERT INTO "CONFIG" VALUES('SubscriberRegistry.Port','5064',0,0,'The port for the subscriber registry. Static.');
INSERT INTO "CONFIG" VALUES('TRX.IP','127.0.0.1',1,0,'IP address of the transceiver application. Static.');
INSERT INTO "CONFIG" VALUES('TRX.Port','5700',1,0,'IP port of the transceiver application. Static.');
INSERT INTO "CONFIG" VALUES('TRX.RadioFrequencyOffset','128',1,0,'Fine-tuning adjustment for the transceiver master clock. Roughly 170 Hz/step. Set at the factory. Do not adjust without proper calibration. Static.');
Modified: software/public/subscriberRegistry/trunk/sipauthserve.cpp
===================================================================
--- software/public/subscriberRegistry/trunk/sipauthserve.cpp 2011-11-18 18:48:28 UTC (rev 2569)
+++ software/public/subscriberRegistry/trunk/sipauthserve.cpp 2011-11-18 22:09:44 UTC (rev 2570)
@@ -50,7 +50,7 @@
using namespace std;
-ConfigurationTable gConfig("/etc/OpenBTS/OpenBTS.db");
+ConfigurationTable gConfig("/etc/OpenBTS/sipauthserve.db");
int my_udp_port;
|