-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sync from commercial e8f86eb921b988c0f1dc42e29ce9343749d08611
- Loading branch information
Showing
25 changed files
with
492 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,41 @@ | ||
._* | ||
*.a | ||
*.o | ||
*.in | ||
*.la | ||
*.lo | ||
*.cgi | ||
.deps | ||
.libs | ||
build-arch-stamp | ||
build-indep-stamp | ||
comp128 | ||
configure-stamp | ||
debian/debhelper.log | ||
debian/files | ||
debian/substvars | ||
debian/tmp/ | ||
sipauthserve | ||
Makefile | ||
Makefile.in | ||
depcomp | ||
install-sh | ||
missing | ||
aclocal.m4 | ||
autom4te.cache/ | ||
build-arch-stamp | ||
build-indep-stamp | ||
config.guess | ||
config.h | ||
config.h.in | ||
config.log | ||
config.status | ||
config.sub | ||
configure | ||
depcomp | ||
install-sh | ||
configure-stamp | ||
debian/debhelper.log | ||
debian/files | ||
debian/substvars | ||
debian/tmp/ | ||
debian/sipauthserve.debhelper.log | ||
debian/sipauthserve.substvars | ||
debian/sipauthserve/ | ||
config.h.in~ | ||
libtool | ||
ltmain.sh | ||
missing | ||
stamp-h1 | ||
apps/comp128 | ||
apps/sipauthserve | ||
apps/subscriberRegistry.example.sql | ||
apps/sipauthserve.example.sql | ||
sipauthserve.example.sql | ||
package/tmp |
Submodule CommonLibs
updated
20 files
+1 −0 | .gitignore | |
+16 −0 | BitVector.cpp | |
+2 −0 | BitVector.h | |
+3 −1 | Configuration.cpp | |
+10 −2 | Interthread.h | |
+96 −0 | InterthreadTest.cpp | |
+3 −2 | LinkedLists.h | |
+125 −0 | LockTest.cpp | |
+9 −13 | Logger.cpp | |
+1 −0 | Logger.h | |
+7 −2 | Makefile.am | |
+80 −32 | Threads.cpp | |
+59 −8 | Threads.h | |
+16 −12 | Timeval.cpp | |
+2 −1 | Timeval.h | |
+1 −1 | TimevalTest.cpp | |
+199 −7 | Utils.cpp | |
+11 −5 | Utils.h | |
+70 −0 | UtilsTest.cpp | |
+2 −0 | sqlite3util.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
tmp_DB='/tmp/SR.db' | ||
conf_DATA='./sipauthserve.example.sql' | ||
|
||
if [ ! -f ${conf_DATA} ]; then | ||
exit 1 | ||
fi | ||
|
||
echo "* check integrity of ${conf_DATA}" | ||
sqlite3 -bail ${tmp_DB} ".read ${conf_DATA}" > /dev/null | ||
exit $? |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
sipauthserve (5.0) unstable; urgency=low | ||
sipauthserve (5.0-master) unstable; urgency=low | ||
|
||
* Test | ||
|
||
-- Donald C. Kirker <donald.kirker@rangenetworks.com> Mon, 22 Apr 2013 00:11:00 -0700 | ||
-- Range Packager <buildmeister@rangenetworks.com> Thu, 25 Sep 2014 00:17:42 -0700 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
var/lib/asterisk/sqlite3dir | ||
etc/OpenBTS | ||
OpenBTS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
usr/local/sbin/comp128 OpenBTS/comp128 | ||
usr/local/sbin/sipauthserve OpenBTS/sipauthserve |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.