-
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.
merged in commercial subscriberRegistry
- Loading branch information
Showing
57 changed files
with
2,958 additions
and
3,069 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 |
---|---|---|
|
@@ -6,3 +6,7 @@ | |
path = sqlite3 | ||
url = [email protected]:RangeNetworks/sqlite3.git | ||
branch = master | ||
[submodule "NodeManager"] | ||
path = NodeManager | ||
url = [email protected]:RangeNetworks/NodeManager.git | ||
branch = 4.0 |
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
Submodule CommonLibs
updated
31 files
+1 −0 | .gitignore | |
+0 −228 | A51.cpp | |
+0 −11 | A51.h | |
+0 −162 | A51Test.cpp | |
+100 −245 | BitVector.cpp | |
+109 −162 | BitVector.h | |
+66 −28 | BitVectorTest.cpp | |
+164 −73 | Configuration.cpp | |
+41 −15 | Configuration.h | |
+1 −1 | ConfigurationTest.cpp | |
+52 −0 | Defines.h | |
+373 −169 | Interthread.h | |
+2 −0 | InterthreadTest.cpp | |
+3 −2 | LinkedLists.h | |
+150 −2 | Logger.cpp | |
+75 −3 | Logger.h | |
+6 −11 | Makefile.am | |
+8 −0 | MemoryLeak.h | |
+6 −0 | ScalarTypes.h | |
+25 −11 | Sockets.cpp | |
+8 −2 | Sockets.h | |
+2 −0 | SocketsTest.cpp | |
+129 −4 | Threads.cpp | |
+76 −5 | Threads.h | |
+1 −1 | Timeval.cpp | |
+370 −30 | Utils.cpp | |
+131 −7 | Utils.h | |
+240 −120 | Vector.h | |
+23 −2 | VectorTest.cpp | |
+221 −5 | sqlite3util.cpp | |
+48 −1 | sqlite3util.h |
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,25 @@ | ||
/**@file Global system parameters. */ | ||
/* | ||
* Copyright 2013 Range Networks, Inc. | ||
* | ||
* This software is distributed under multiple licenses; | ||
* see the COPYING file in the main directory for licensing | ||
* information for this specific distribuion. | ||
* | ||
* This use of this software may be subject to additional restrictions. | ||
* See the LEGAL file in the main directory for details. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
*/ | ||
|
||
/* | ||
This file keeps global system parameters. | ||
*/ | ||
|
||
#include "config.h" | ||
#include <Globals.h> | ||
|
||
const char *gVersionString = "release " VERSION " built " __DATE__ " rev" SVN_REV " "; |
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,36 @@ | ||
/**@file Global system parameters. */ | ||
/* | ||
* Copyright 2013 Range Networks, Inc. | ||
* | ||
* This software is distributed under multiple licenses; | ||
* see the COPYING file in the main directory for licensing | ||
* information for this specific distribuion. | ||
* | ||
* This use of this software may be subject to additional restrictions. | ||
* See the LEGAL file in the main directory for details. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
*/ | ||
|
||
/* | ||
This file keeps global system parameters. | ||
*/ | ||
|
||
#ifndef GLOBALS_H | ||
#define GLOBALS_H | ||
|
||
#include <Configuration.h> | ||
|
||
|
||
/** | ||
Just about everything goes into the configuration table. | ||
This should be defined in the main body of the top-level application. | ||
*/ | ||
extern ConfigurationTable gConfig; | ||
|
||
/** The version string. */ | ||
extern const char *gVersionString; | ||
#endif |
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,33 @@ | ||
# | ||
# Copyright 2008 Free Software Foundation, Inc. | ||
# | ||
# This software is distributed under the terms of the GNU Public License. | ||
# See the COPYING file in the main directory for details. | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
# | ||
|
||
include $(top_srcdir)/Makefile.common | ||
|
||
AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) | ||
AM_CXXFLAGS = -Wall | ||
|
||
noinst_LTLIBRARIES = libglobals.la | ||
|
||
libglobals_la_SOURCES = Globals.cpp | ||
|
||
noinst_PROGRAMS = | ||
|
||
noinst_HEADERS = \ | ||
Globals.h |
Oops, something went wrong.