[SR-Dev] New commits on branch janakj/mysql
Jan Janak
jan at iptel.org
Fri Feb 13 01:54:27 CET 2009
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=3d314ae153c733e6e7833a0a48a6920338fd4358
Author: Jan Janak <jan at iptel.org>
Date: Fri Feb 13 01:53:03 2009 +0100
Module name changed to db_mysql.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=9bbb835a758fceb60392efe4e72e418b9a68b022
Author: Jan Janak <jan at iptel.org>
Date: Fri Feb 13 01:51:33 2009 +0100
Changes necessary to make the module compile in the sip-router tree.
This is a set of changes necessary to make the LDAP module compile in the
sip-router tree. This includes:
* Extra stuff in the Makefile to link with libsrdb2
* Defined SER_MOD_INTERFACE in the makefile
* Updated relative paths to srdb2 header files
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=81e893341f7fc1c0271ceb427429c60b79287020
Merge: 2d6bfb46145eb354f0ed22301a8fdeef67eacf2e 0af03a1d6a14ccdf3f0344d30a042060ea85743a
Author: Jan Janak <jan at iptel.org>
Date: Fri Feb 13 01:20:29 2009 +0100
Merge commit 'ser_mysql/master' into mysql
* commit 'ser_mysql/master': (138 commits)
- fixed a crash in mysql_stmt_fetch when the statement does not exist
- mysql versions < 5.0 do not support MYSQL_DATA_TRUNCATED
- buffer size increased to 1024
- put doxygen docs in correct group
- support for 'last_id' getopt, which retrieves the unique id of the last
- Support for fetching all data to the client at once
- check_result_columns renamed to check_result
- better check of the return value of mysql_stmt_result_metadata
- reordered included header files for better detection of missing headers
added non equal operator to DB API and mysql module
- a couple of minor bug fixes backported from internal verion
- dispose driver-specific driver properly on error
- re-submit compiled queries to the server upon reconnect
added doxygen comment to deal with these files
updated update_params() to work with 3 sets of params
added common prefix 'mysql:' into INFOs
more descriptive comments
removed forgotten abort() from error handler.
added doxygen comment
Preparation for implementation of UPDATE db statement.
...
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=0af03a1d6a14ccdf3f0344d30a042060ea85743a
Author: Jan Janak <jan at iptel.org>
Date: Sun Jun 1 19:22:15 2008 +0000
- fixed a crash in mysql_stmt_fetch when the statement does not exist
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=3bbe2e87366d1de28c58ad185e55006b1055d6ff
Author: Jan Janak <jan at iptel.org>
Date: Thu May 22 13:55:24 2008 +0000
- mysql versions < 5.0 do not support MYSQL_DATA_TRUNCATED
patch provided by Alfred E. Heggestad
closes SER-377
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=a3c3408f9d5dd802fc0ac483bf7d1528780bff60
Author: Jan Janak <jan at iptel.org>
Date: Thu May 15 10:51:19 2008 +0000
- buffer size increased to 1024
- fixed zero termination of truncated fields (reported by Miklos)
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=95e252d56cd5a31a52582ce5e426d41dc9ca8eba
Author: Jan Janak <jan at iptel.org>
Date: Tue May 6 12:07:48 2008 +0000
- put doxygen docs in correct group
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=3df2afaa51835b41087a07802896926653e6a627
Author: Jan Janak <jan at iptel.org>
Date: Thu Feb 14 15:40:44 2008 +0000
- support for 'last_id' getopt, which retrieves the unique id of the last
inserted row
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=905f205ded519bf2b70cb8dc433f0e1fc02d5bda
Author: Jan Janak <jan at iptel.org>
Date: Sun Feb 3 19:12:05 2008 +0000
- Support for fetching all data to the client at once
- Implemented db_setopt and db_getopt support for "fetch_all"
command, when set to 1 (default), the client library will
fetch all data to client in one step, this behavior can
be disabled by setting the parameter to 0.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=569418281bacb09200e5664b40f501ae6d6baad0
Author: Jan Janak <jan at iptel.org>
Date: Wed Jan 16 15:27:06 2008 +0000
- check_result_columns renamed to check_result
- bind_result ignores empty result sets without indicating errors
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=03547cefbe6b8eb4496ff9788b50c02939957d76
Author: Jan Janak <jan at iptel.org>
Date: Wed Jan 16 14:58:46 2008 +0000
- better check of the return value of mysql_stmt_result_metadata
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=a201f9aee79d354ea2706eae9d3aa6279aaa7ae7
Author: Jan Janak <jan at iptel.org>
Date: Wed Jan 16 14:17:28 2008 +0000
- reordered included header files for better detection of missing headers
- disable automatic database reconnects, they do not work with pre-compiled
statements
- error/info/log message cleanup
- auto_reconnect module parameter removed
- introduced new module parameter retries which controls the number of
times queries are tried to execute on server on failures
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=90060642262652b7027820037152d637c27c11fe
Author: Nils Ohlmeier <nils at iptel.org>
Date: Fri Jan 11 19:27:11 2008 +0000
added non equal operator to DB API and mysql module
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=356e43fe98876af4e9d03f6f27e618232ac0f433
Author: Jan Janak <jan at iptel.org>
Date: Thu Nov 15 17:27:06 2007 +0000
- a couple of minor bug fixes backported from internal verion
- support for "fake NULL" values (strings or integers that will
be written in database if the value is NULL) (compile time option)
- proper support for raw SQL statements
- the possibility to retrieve fields in the result set and their
types from the server added (needed for queries like select *).
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=ae322c06dbc2b72e53610cc881c384bbbc2f3fad
Author: Jan Janak <jan at iptel.org>
Date: Thu Nov 15 15:09:01 2007 +0000
- dispose driver-specific driver properly on error
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=ea3fd384c2b07287c4509b0185a39ce8fa252344
Author: Jan Janak <jan at iptel.org>
Date: Fri Jul 13 08:52:29 2007 +0000
- re-submit compiled queries to the server upon reconnect
- removed superfluous INFO statements
- removed C++ style comments
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=d458b87b97626a2cffc09ff7e407528b85a3c52d
Author: Libor Chocholaty <libor at iptel.org>
Date: Tue Jul 3 15:16:14 2007 +0000
added doxygen comment to deal with these files
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=4ed9aa9ddf57a5c6555f50b7e113256f94df953e
Author: Libor Chocholaty <libor at iptel.org>
Date: Tue Jul 3 15:13:29 2007 +0000
updated update_params() to work with 3 sets of params
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=1cfdcbfc0d1fbecbbbaf001e7ce8a4e5686201f0
Author: Libor Chocholaty <libor at iptel.org>
Date: Tue Jul 3 15:06:17 2007 +0000
added common prefix 'mysql:' into INFOs
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=904c3cfa0389b082de9fb681a9eaa87a4d449750
Author: Libor Chocholaty <libor at iptel.org>
Date: Tue Jul 3 14:53:22 2007 +0000
more descriptive comments
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=5650c8c780baecc4df821005670ad90b1d1006b9
Author: Libor Chocholaty <libor at iptel.org>
Date: Mon Jul 2 11:04:05 2007 +0000
removed forgotten abort() from error handler.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=b263021e41bb5a2c89436ad477fea364e65ec290
Author: Libor Chocholaty <libor at iptel.org>
Date: Mon Jun 25 17:53:12 2007 +0000
added doxygen comment
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=1528972fab741d72d211cdd62f2249805739bf73
Author: Libor Chocholaty <libor at iptel.org>
Date: Mon Jun 25 17:51:27 2007 +0000
Preparation for implementation of UPDATE db statement.
First of all we need two sets of params in db_cmd.
First for match clause and the second as column-value pairs of changed columns.
Currently it uses three sets of parameters: result, match and vals.
- result - DB_GET output
- match - DB_GET, DB_DEL (and DB_UPD in the future)
- vals - DB_PUT (and DB_UPD)
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=1bc0f4e48c1c46a4272f945291f2134e06254220
Author: Jan Janak <jan at iptel.org>
Date: Mon Jun 25 15:39:09 2007 +0000
Added the following features from Andrei:
- connect_timeout parameter which allows to limit connection timeouts to
mysql server
- send_timeout parameter which can limit the time the client library spends
sending data to the server
- receive_timeout parameter which can limit the time the library spends
waiting for the data from the server
- enable reconnect for mysql >= 5.0.13
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=145a90df8aafb0a0e665bac9b0c653b4d1d38ee2
Author: Jan Janak <jan at iptel.org>
Date: Wed Apr 18 13:08:45 2007 +0000
- db_fld.v.str renamed to db_fld.v.lstr due to problems with g++
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=2cd3e836e9c88ddc127d1c4cf4a80f8a369889a0
Author: Jan Janak <jan at iptel.org>
Date: Thu Apr 5 13:26:10 2007 +0000
- Support for raw sql queries
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=e55ca85d33d8e936d08ec138ae09ea225d5f61eb
Author: Jan Janak <jan at iptel.org>
Date: Thu Apr 5 11:14:59 2007 +0000
- wrong comment fixed
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=229049bb55cd8d7597c2112e12cba8129c39260b
Author: Jan Janak <jan at iptel.org>
Date: Wed Apr 4 13:59:17 2007 +0000
- extra debugging messages removed
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=25bdcd1ff51099cd215faf37d3059e3a379a0f65
Author: Jan Janak <jan at iptel.org>
Date: Wed Apr 4 12:33:06 2007 +0000
- fixed a couple of gcc warnings
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=4198a3a2f1cbb1b2a0e65071e080cbb519ae4a5c
Author: Jan Janak <jan at iptel.org>
Date: Wed Apr 4 11:48:20 2007 +0000
- mysql module updated to new db api
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=4f2d8d2103d050b6352d45d8ba5aaf296dca7c48
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Fri Feb 23 21:03:38 2007 +0000
- relax db_init BUG check (allow db init from fixup functions)
(SER-227 related)
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=01e5c3a040d7dcf4722d3f7733d1c8a53b9120af
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Thu Feb 22 15:56:48 2007 +0000
- fix the yesterday's fix: allow db_init from main if it's done from mod_init
(but don't allow it and log a BUG if it happens from child_init(PROC_MAIN)).
(SER-227 related)
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=03f639684df7291e77d509602df1326f9972c23e
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Thu Feb 22 00:24:16 2007 +0000
- fix: db connections should not be opened from child_init(PROC_MAIN),
or they will be inherited by all the tcp processes (bad). Bug reported by
Jan Andres <jan.andres at freenet-ag.de>.
closes SER-227
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=cba9c4b125c085fb167d8d1e5d027c59b00f1651
Author: Miklos Tirpak <miklos at iptel.org>
Date: Tue May 30 12:00:57 2006 +0000
bug currected: missing space in query between 'where' and 'order by' keywords
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=c2f1d07332b0d582b793d1ae2eb0bcc05e69f943
Author: Jan Janak <jan at iptel.org>
Date: Mon Jan 30 16:49:51 2006 +0000
- enable reconnection explicitly
Closes: SER-80
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=77d536720af2c56c27837aa50d38c31e074dab61
Author: Jan Janak <jan at iptel.org>
Date: Tue Jan 10 22:16:07 2006 +0000
- DB_FLOAT support
- fixed error in params_add in postgres module
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=c89a6b92a0f952ad25426c93f1e3d9e5e158137b
Author: Tomas Mandys <tomas.mandys at iptel.org>
Date: Sun Jan 8 22:43:14 2006 +0000
- export param types adjusted to PARAM_STR/STRING & PARAM_INT
- removed corresponding obsolete strlen(str_param) in init
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=dd60366e9d12612c7a43440b92de21cb6df1f0c4
Author: Jan Janak <jan at iptel.org>
Date: Thu Jan 5 10:52:01 2006 +0000
- support for null values in where statements
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=e42549d276b106a008057abfd1bb85fd2a8a75c4
Author: Jan Janak <jan at iptel.org>
Date: Thu Dec 15 23:19:06 2005 +0000
- _timegm removed
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=aff750c89de987e9d9307e625c874d66665860b8
Author: Jan Janak <jan at iptel.org>
Date: Tue Dec 13 00:19:29 2005 +0000
- module interface exended with list of management functions
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=8508f5aca3ff7098c21010bb5ed704ddb3868a3a
Author: Maxim Sobolev <sobomax at sippysoft.com>
Date: Thu Nov 17 03:49:37 2005 +0000
Provide two useful macros for str initialization: STR_STATIC_INIT() and
STR_NULL. Adjust all modules to use those macros where appropriate.
Verified by: md5(1) (those modules, which actually compile)
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=b198137ebfd0263b621de991f5df7236f6a2581f
Author: Jan Janak <jan at iptel.org>
Date: Tue Nov 15 15:29:58 2005 +0000
- Store all date/time values in UTC in database
- replacement for timegm (GNU extension)
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=b59ace5e3c2dd7071c3d2396832a06addffc2ba5
Author: Jan Janak <jan at iptel.org>
Date: Thu Oct 13 09:23:07 2005 +0000
- make debug message scheme independent
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=f22f076e51d4255fcb88ab6417017ef1a3733699
Author: Andreas Granig <agranig at linguin.org>
Date: Wed Oct 12 02:57:00 2005 +0000
Mysql result wasn't free'd if converting result had failed.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=1b8946fded262449fde646c5c07b4be9b9b5f3ee
Author: Andreas Granig <agranig at linguin.org>
Date: Tue Sep 20 13:28:34 2005 +0000
Moved mysql result from the connection to db_res_t to allow nested queries.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=60bf49ce1694c39abe44985db6ecdb709ecfc9bc
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Wed Jun 1 22:25:05 2005 +0000
- makefiles cleanups (use $(LOCALBASE) everywhere) -- fixes some include
path problems on netbsd
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=c32e60937a878e006ee7aada6cf5cd97588faaea
Author: Jan Janak <jan at iptel.org>
Date: Wed May 18 16:30:35 2005 +0000
- fixed misleading debug message
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=ce4c4dd7a8e6331eed7624d7f40bb3973134298d
Author: Jan Janak <jan at iptel.org>
Date: Mon Feb 28 18:52:51 2005 +0000
- Implemented DB_REPLACE capability
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=581857bb2dc875ba539d5d0e8955ab9033a07f49
Author: Jan Janak <jan at iptel.org>
Date: Fri Feb 25 16:31:45 2005 +0000
- All str pointers initialized to an emptry string, this is to prevent
crashes when module writers do not check the NULL flag of a value properly.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=2550113bd78fd97cccf4535f9f68049678edce37
Author: Jan Janak <jan at iptel.org>
Date: Thu Feb 24 19:37:11 2005 +0000
- previous commit was an older version of the function
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=c77453e0926cc569c0163d1bcbc7e2c03c656781
Author: Jan Janak <jan at iptel.org>
Date: Thu Feb 24 17:44:54 2005 +0000
- atoi replaced with strtoul to convert also numbers > INT_MAX.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=942dd87dca3b46bfc000d18f4669c66f041274e2
Author: Jan Janak <jan at iptel.org>
Date: Mon Feb 7 15:21:08 2005 +0000
- parse_mysql_url not necessary anymore
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=48d2c4c874890b9bc254ee53b9f2757ebfc0ce4e
Author: Jan Janak <jan at iptel.org>
Date: Wed Feb 2 19:10:06 2005 +0000
- dead files
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=344f101afe4e5d760be1fe5fea521f2002fec23d
Author: Jan Janak <jan at iptel.org>
Date: Wed Feb 2 19:09:22 2005 +0000
- using improved connection pool
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=c802ee8810a0f486c4ef2c028ef271103cd18a07
Author: Jan Janak <jan at iptel.org>
Date: Tue Feb 1 15:13:04 2005 +0000
- some useful debugging information
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=106f827d29f949a8786738d7ebd1e7fc3391ab36
Author: Bogdan-Andrei Iancu <bogdan at voice-system.ro>
Date: Fri Jan 21 23:20:59 2005 +0000
-revert some dbg messages
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=730bddb501ab3eae740a503280aedab553990992
Author: Bogdan-Andrei Iancu <bogdan at voice-system.ro>
Date: Fri Jan 21 23:17:07 2005 +0000
-bug fixed in processing DB url without password
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=f3c7f856af82ed65eba5988d023051450f080bf8
Author: Jan Janak <jan at iptel.org>
Date: Mon Dec 6 08:51:44 2004 +0000
- fixed typo -- dumplicated snprintf -- reported by Sun Zongjun
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=61bd3ce185c2a8037ba94e0de42e49d5213066dd
Author: Jan Janak <jan at iptel.org>
Date: Sat Dec 4 23:40:28 2004 +0000
- Proper checking of the return value of snprintf
Closes: SER-18
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=c922acc2881f8ece68a6de46d6b66714cec44b74
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Thu Dec 2 21:16:02 2004 +0000
- more warnings & signed/unsigned issues fixes (gcc 3.2/solaris)
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=738c6a416d70fe3601be8c464030d3a0207c99ba
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Thu Dec 2 15:55:25 2004 +0000
- removed -p port && extended -l to support the same syntax as listen= :
-l [proto:]addr[:port] where proto=udp|tcp (default all),
and addr=ip_addr|host|interface_name.
E.g.: -l localhost, -l tcp:127.0.0.1 -l udp:[::1]:5062, -l eth0,
-l tcp:xl1:5090
- mysql: fixed minor warning
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=8a1080ce0fe22892127f69f6d8d7785c314af782
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Wed Dec 1 16:51:17 2004 +0000
core: - no fork unused sockets fix & cleanups
mysql: - strptime XOPEN define
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=cacef05f7a7eb991f472d185bdf4327f79aa3f44
Author: Jan Janak <jan at iptel.org>
Date: Wed Nov 3 13:16:45 2004 +0000
- All attributes of db_val_t set to 0 when the null attribute is set.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=d7c807b39f1ffb30bf7958a175fe62f049943559
Author: Dan Pascu <dan at ag-projects.com>
Date: Thu Oct 28 23:36:14 2004 +0000
- added ability to auto reconnect to mysql if a query attempt returns a
'server lost' error.
- added auto_reconnect parameter to the mysql module, to allow switching
it on/off (acts like a boolean value: 0 disabled, anything else enabled)
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=d9b0c38619e6dede1936bee1227b5e6cd753c46b
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Fri Oct 22 17:17:55 2004 +0000
- minor x86_64 fixes
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=955c461486ab170d67bb96d84fc1bbbd4d6cda90
Author: Jan Janak <jan at iptel.org>
Date: Wed Sep 15 12:38:26 2004 +0000
- wrong parameter definition fixed
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=8193e4aee4170499a09b792253c70c078979492b
Author: Jan Janak <jan at iptel.org>
Date: Thu Sep 9 14:45:48 2004 +0000
mysql_ping returns an error when connection is lost
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=d54e993e141a56185cbfa057d488f7ef8dda4960
Author: Jan Janak <jan at iptel.org>
Date: Tue Aug 24 08:58:23 2004 +0000
- Spelling checked
- READMEs updated
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=c28c32a94ccf7c0b610c60ae4d925637dbf01749
Author: Jan Janak <jan at iptel.org>
Date: Wed Aug 4 14:38:13 2004 +0000
Fixed a missing function
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=6586f691e39268d77b25685e6491fd4b0e7027f1
Author: Jan Janak <jan at iptel.org>
Date: Wed Aug 4 14:25:06 2004 +0000
free_query changed to more descriptive free_result
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=76c72cff1bd3b2c05c29ac8b480366c73e8bc4ec
Author: Jan Janak <jan at iptel.org>
Date: Tue Aug 3 17:43:41 2004 +0000
ping_interval == 0 disables this feature
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=a041800f536483bb63d6aad6eee7668730da0f32
Author: Jan Janak <jan at iptel.org>
Date: Tue Aug 3 17:22:06 2004 +0000
ping_interval parameter implemented, the module calls mysql_ping if the
connection has been inactive for >= ping_interval.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=d38a3194788c19743e42a96dabfadb400425bb00
Author: Jan Janak <jan at iptel.org>
Date: Fri Mar 5 18:27:37 2004 +0000
mysql_real_escape_string called on string parameters
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=86fa65faede6ff756fd80024e6f8548d875a054e
Author: Bogdan-Andrei Iancu <bogdan at voice-system.ro>
Date: Wed Feb 11 16:01:49 2004 +0000
- unwanted DBG message removed (added by me by mistake)
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=49131c49de55712b885b90dd950d5ca16b7317cf
Author: Bogdan-Andrei Iancu <bogdan at voice-system.ro>
Date: Fri Feb 6 18:56:49 2004 +0000
- basics for users preferences:
- script param. "avp_db_url" added
- scrit function "load_avp" with 2 or 3 params added
- do_action updated
- init. of bd connection from core on startup per each proccess
- reseting avp list after main route and reply/failure_route execution
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=0132ecd98ee8b0ea0691ce1dcc0664530941d1ef
Author: Jan Janak <jan at iptel.org>
Date: Mon Jan 26 13:10:35 2004 +0000
Shallow copy of db_con->table instead of deep.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=cf63aa85e168e9e9a791bb880d4451dd5dbcc8d4
Author: Jan Janak <jan at iptel.org>
Date: Mon Jan 26 12:46:15 2004 +0000
MySQL connection pool. Connections with the same URL are shared among
modules within the same process.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=95f549329d4363fa51dd8db872ee8945ae7fc6d9
Author: Jan Janak <jan at iptel.org>
Date: Mon Nov 17 22:49:50 2003 +0000
- small cleanup
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=fa1c003ec0eae948a6d3dc08871a5a5700e957b6
Author: Jan Janak <jan at iptel.org>
Date: Mon Nov 17 22:19:07 2003 +0000
- mysql parser state diagram
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=e3a64d8b5b2f5fdf79b04a1f48ba43bcf6e65314
Author: Jan Janak <jan at iptel.org>
Date: Mon Nov 17 21:41:56 2003 +0000
- Better mysql URL parser
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=cd18ec1b29aded71782b1d4b740aaee81a98d8db
Author: Jan Janak <jan at iptel.org>
Date: Mon Nov 3 13:03:56 2003 +0000
- sql:// changed to mysql:// in all modules
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=555a3461a0bb67925defd31109315991686fec1b
Author: Daniel-Constantin Mierla <daniel at voice-system.ro>
Date: Wed Oct 29 12:33:21 2003 +0000
- db_raw_query() does not return error when the result parameter is NULL --
usefull for INSERT/UPDATE when there is no result
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=0a40d3fa664470efee8af2c17cb1f67504303358
Author: Jan Janak <jan at iptel.org>
Date: Fri Oct 24 20:36:03 2003 +0000
- removed obsolete files
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=37f120c1087eb810b427ff68ca66269fcbc8bce6
Author: Jan Janak <jan at iptel.org>
Date: Fri Oct 24 20:35:35 2003 +0000
- More sane sources, additional include paths in Makefile
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=8cdf331adf449abb0627022d731ab5f661986a8d
Author: Jan Janak <jan at iptel.org>
Date: Wed Oct 8 13:07:21 2003 +0000
- Got rid of all the ~ at the beginning of functions that are not supposed
to be called from scripts. It's a relict.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=473c6c0345d85486d36b35deafb9494f960bd7fd
Author: Jan Janak <jan at iptel.org>
Date: Tue Sep 16 18:55:07 2003 +0000
- another mysql library directory added
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=c5e59559d698d73c87d9e46e0f8583530335af13
Author: Jan Janak <jan at iptel.org>
Date: Mon Sep 15 22:34:49 2003 +0000
- handling of DB_BITMAP added
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=929ce3ccbd032960392afb160e2433c7d9a47243
Author: Bogdan-Andrei Iancu <bogdan at voice-system.ro>
Date: Wed Jul 2 20:44:13 2003 +0000
one debug mesage commented out (it was screwing up the terminal when printing
BLOBs)
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=9e13713dc31beacf4760d57e2f1ec8c254db293a
Author: Bogdan-Andrei Iancu <bogdan at voice-system.ro>
Date: Mon May 26 13:05:57 2003 +0000
- in str2val() the 'nul' field is explcitly set to 0 if the value is not null
(db_val.c line 154)
- in get_columns() a switch brach for detecting BLOB type was added (db_res.c
lines 94-99)
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=087a1a6e7665a94e9b295ce61dd93e1e4d62a189
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Fri May 23 15:43:42 2003 +0000
- updated all makefiles (now 'cd modules/foo; make' will link with the
proper libraries). Please add an "include ../../Makefile.defs" as first
line of the local module Makefile if your module is not on the cvs)
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=593f75278410aac3c11aea6bedbddfcf34503402
Author: Jiri Kuthan <jiri at iptel.org>
Date: Sun Apr 27 18:17:23 2003 +0000
module version checking introduced
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=6b4db747a9ef99aa71904844b2b034d35f778731
Author: Jan Janak <jan at iptel.org>
Date: Fri Apr 25 18:19:05 2003 +0000
-lz put back.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=fb0138d615f9e8f74cbddebfdf062501f2276e7e
Author: Nils Ohlmeier <nils at iptel.org>
Date: Wed Apr 16 00:12:19 2003 +0000
Removed unnecessary zlib from linking libs.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=4689590ad3a26a281a6aebe1068464ef09cf693e
Author: Jan Janak <jan at iptel.org>
Date: Mon Apr 14 18:37:43 2003 +0000
- fixed the daylight saving problem.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=3865b332055969f9904484635bc7c85df34d6a6d
Author: Nils Ohlmeier <nils at iptel.org>
Date: Fri Apr 11 18:24:55 2003 +0000
Inserted own timegm for non GNU systems.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=2d8e504f04cb3c939c3c2d49c242c4ba174bef03
Author: Jan Janak <jan at iptel.org>
Date: Sun Apr 6 20:25:51 2003 +0000
- child init called in all ser processes (main, timer, fifo, tcp_main, udp_children,
tcp_children, tcp_main)
- defined macros PROC_MAIN, PROC_TIMER, PROC_FIFO, PROC_TCP_MAIN - they substitute
rank for special processes
- listening children have rank 1 and higher
- modified modules to use rank 1 instead of 0 (modules creating it's own children)
- db connections are either not opened in mod_init or are closed immediately when
needed (for example preloading data for all children from database)
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=b8d0b2257c8525a5162b430e3a80a71cc6693ff0
Author: Nils Ohlmeier <nils at iptel.org>
Date: Fri Apr 4 15:09:52 2003 +0000
Fixed timezone problem, where the localtime was added to the expires
value of all contacts in the database.
(Reported by Jiri)
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=cc77617fc4d036f1825baa6752beb69bbeb724a8
Author: Jan Janak <jan at iptel.org>
Date: Sun Mar 16 20:27:23 2003 +0000
flags parameter added to cmd_export_t
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=ca95bc261f9b010b478b6596c8fc829dea313bd0
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Wed Mar 12 12:54:00 2003 +0000
- sun cc compilation fixes
- various typos fixed
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=1e09df6e6277ac3ee56003c4085c53baec1a703d
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Tue Mar 11 13:17:53 2003 +0000
- new module interface
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=452ba322fd456f0bd3c50c1c69e089af733b6599
Author: Jan Janak <jan at iptel.org>
Date: Mon Mar 3 20:45:45 2003 +0000
parameter checking in use_table fixed.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=19024966b3baa5450ac917c9c911247469826d32
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Mon Feb 24 16:46:11 2003 +0000
- applied Maxim Sobolev <sobomax at FreeBSD.org> makefile patches
(slightly adapted for the cvs version)
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=316e41e70d9819565ce222512856f174cd7f999d
Author: Jan Janak <jan at iptel.org>
Date: Tue Dec 3 12:37:11 2002 +0000
_XOPEN_SOURCE
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=e7d533a7e92684fd77bda724b020a1d3a53c8a8a
Author: Jan Janak <jan at iptel.org>
Date: Mon Dec 2 09:16:58 2002 +0000
Minor beautifications.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=f361efcf0a409f75dd41c9f1ab06e6b9c818a015
Author: Jan Janak <jan at iptel.org>
Date: Thu Nov 28 20:05:08 2002 +0000
Proper result handling for queries returning no result.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=3f46d75037d5c9764e0a88bee05826afb261748c
Author: Jan Janak <jan at iptel.org>
Date: Thu Nov 28 17:05:16 2002 +0000
An additional parameter to db_query, db_update, db_delete.
New function - db_raw_query
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=26b3ee561f76cf7ad3d590e871cfe28d14980218
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Mon Nov 25 20:29:44 2002 +0000
- netbsd fixes
- 64 bit mini-cleanup
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=6c2a2e94703efa3acff47360d7837842c9e80cb8
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Tue Nov 12 12:32:17 2002 +0000
- added the proper libmysqlclient dir for FreeBSD
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=ebf876adb3947659a9912793a7a69505f8cf286c
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Mon Nov 11 21:34:53 2002 +0000
- openbsd (3.2) support [ changes in fastlock.h, ser_module.c, tm/t_hooks.c,
Makefiles ]
- texops replace/search_append bugs fixed
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=1ba86833857ff3629a954d9dd95ebf0f5b02d442
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Mon Nov 4 17:05:32 2002 +0000
- converted to autoconf compatible format (replaced some os specific ifdefs with HAVE_xxx a.s.o)
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=720853083686839dfffd57339f3ee3b4997db5b4
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Sat Nov 2 01:35:08 2002 +0000
- fixed cfg.y for icc (hack)
- many other small fixes
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=bcecf0be705f4575f28d4037b95b93f8a71f12e0
Author: Daniel-Constantin Mierla <daniel at voice-system.ro>
Date: Wed Oct 16 13:50:28 2002 +0000
*** empty log message ***
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=0854a9f096c272aa621b7123aba2f7f135c38dff
Author: Andrei Pelinescu-Onciul <andrei at iptel.org>
Date: Mon Oct 7 16:14:10 2002 +0000
- fixed some bad entries in debian/changelog & rpm spec
- added -I & -L in mysql Makefile
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=29c1e9a979f3d331577886669968656170c05e4f
Author: Jan Janak <jan at iptel.org>
Date: Thu Sep 19 14:52:11 2002 +0000
Cosmetic change
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=e280d3a54fd7b171a54cdf1f14fe3ae3b8faf4ef
Author: Jiri Kuthan <jiri at iptel.org>
Date: Thu Sep 19 12:23:52 2002 +0000
GPLization banner introduced to *.[hc] files
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=cc46395550518f8df9339f084bbe8fa06c0079b7
Author: Jiri Kuthan <jiri at iptel.org>
Date: Thu Sep 19 11:51:26 2002 +0000
CVS substitutes introduced
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=30b8dfb9101d337aad1b3c525436bb53d094cb82
Author: Jan Janak <jan at iptel.org>
Date: Tue Sep 3 13:38:17 2002 +0000
bugs #342 & #343 fixed.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=06a690e306dee92df13e8967bbcf93e7316bf483
Author: Jan Janak <jan at iptel.org>
Date: Fri Aug 30 10:16:58 2002 +0000
pkg_malloc result testing fixed
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=deaea4970470fa7ee1c058ce6425619bcca3c0ae
Author: Jan Janak <jan at iptel.org>
Date: Wed Aug 21 20:18:11 2002 +0000
*** empty log message ***
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=56877cdd74bbb4ac2517ead44dd7e7650b11ac85
Author: Bogdan-Andrei Iancu <bogdan at voice-system.ro>
Date: Wed Aug 14 16:24:37 2002 +0000
*** empty log message ***
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=cd7ea16ba2c23f0d3d252a98523f52e150b046fd
Author: Jan Janak <jan at iptel.org>
Date: Mon Aug 12 14:36:23 2002 +0000
*** empty log message ***
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=8a2212de2ec7598a0c83dca7c6521ffadf11705c
Author: Jan Janak <jan at iptel.org>
Date: Mon Aug 12 11:34:04 2002 +0000
*** empty log message ***
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=d1d7b80901040acd8e4e776e28d90eac063a71a5
Author: Jan Janak <jan at iptel.org>
Date: Mon Aug 12 11:33:17 2002 +0000
db_con internals changed
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=e34dfe9a0fc705c7b3b6819a944c06326418d75c
Author: Jan Janak <jan at iptel.org>
Date: Fri Aug 9 15:02:48 2002 +0000
Bug fixed.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=dc117346ba5da1b424b4a5a263a4b7b915c527d1
Author: Jan Janak <jan at iptel.org>
Date: Thu Aug 8 17:26:34 2002 +0000
return values changed, blob support added
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=ce699f84b22dad9e84cbfc602e391c6fb428e816
Author: Jan Janak <jan at iptel.org>
Date: Tue Aug 6 11:11:45 2002 +0000
str structure is supported now.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=ce7679f12764f7efe5671d691438213c8a18d395
Author: Jan Janak <jan at iptel.org>
Date: Wed Jul 24 14:50:49 2002 +0000
Moved to sip_router/db
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=c5d23c4e130756b5649139244fbf19623414a849
Author: Jan Janak <jan at iptel.org>
Date: Wed Jul 24 14:45:10 2002 +0000
Header files split
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=4017cbc0d7505cf630af56dc27ba511e3f10112c
Author: Jan Janak <jan at iptel.org>
Date: Tue Jul 9 09:08:25 2002 +0000
database module interface moved.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=7bc9dd91d4e22f835db177675c877756ee1d95a6
Author: Jan Janak <jan at iptel.org>
Date: Fri May 10 01:00:09 2002 +0000
LOG typos fixed
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=73b7a1b9c13a8bd4309e78c453e3b7258d0424a6
Author: Jiri Kuthan <jiri at iptel.org>
Date: Thu May 9 18:51:50 2002 +0000
added -L
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=817335ea3872990e0712c92167418995033d42da
Author: Jan Janak <jan at iptel.org>
Date: Wed Apr 3 21:54:15 2002 +0000
*** empty log message ***
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=a6b41fd03723cd45a4abdd5b52b9728ddb62167f
Author: Jan Janak <jan at iptel.org>
Date: Tue Mar 5 22:55:31 2002 +0000
*** empty log message ***
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=3bf9d6faa5e699ea899a53d4c266471b29b9246a
Author: Jan Janak <jan at iptel.org>
Date: Tue Mar 5 14:36:03 2002 +0000
*** empty log message ***
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=979988063f63b9d626e89dd1b1f5d9473c640cd9
Author: Jan Janak <jan at iptel.org>
Date: Fri Mar 1 10:50:28 2002 +0000
*** empty log message ***
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=6fa0cfe59bdeca0d9b1d00fbb66128a4baa55624
Author: Jan Janak <jan at iptel.org>
Date: Sun Feb 24 17:11:42 2002 +0000
Order parameter added to db_query function
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=e12916506c7951b685994078d3d84ad29da0f590
Author: Jiri Kuthan <jiri at iptel.org>
Date: Fri Jan 11 19:58:58 2002 +0000
ref_count turned into ref_bitmap; oncancel module handler added
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=78aa203058f96c926088de24b6b2a962fd71934d
Author: Jiri Kuthan <jiri at iptel.org>
Date: Mon Jan 7 04:39:49 2002 +0000
performance and bug fixes
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=cad239ce5f64a37b78ee46b724804b5ae705d352
Author: Jan Janak <jan at iptel.org>
Date: Thu Jan 3 22:09:27 2002 +0000
Database documentation added.
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=c4553b38377fea8eb6afa596c5dce24888b995df
Author: Jan Janak <jan at iptel.org>
Date: Thu Jan 3 15:19:40 2002 +0000
*** empty log message ***
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=c811180f0c7b24c4f6a40f360caf07355f9098af
Author: Jan Janak <jan at iptel.org>
Date: Tue Dec 18 00:28:45 2001 +0000
Standalone database module
More information about the sr-dev
mailing list