[SR-Dev] New commits on branch master

Jan Janak jan at iptel.org
Tue Feb 17 13:17:24 CET 2009


URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=43f01015237b9fabd9ef36d9674aac5bababcb1e
Author: Jan Janak <jan at iptel.org>
Date:   Tue Feb 17 11:12:04 2009 +0100

    Make sure mod_init from kamailio/db_mysql is called.
    
    Changes include:
     * mysql_mod_init renamed to kam_mysql_mod_init to avoid conflicts
       with sources from ser
     * The function is no longer static so that it can be accessed from
       mysql_mod.c
     * mysql_mod_init modified to call kam_mysql_mod_init at the end.

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=1a058e14e1ae0b316c05999d088db2d0fdec03b3
Author: Jan Janak <jan at iptel.org>
Date:   Tue Feb 17 11:04:29 2009 +0100

    Export kamailio/db_mysql parameters through the module api.
    
    All parameters original exported by kamailio/db_mysql are now exported
    thought the api of the merged module in sip-router/modules/db_mysql.
    
    The parameter ping_interval is already present in the sources coming
    from ser, so we removed the original parameter from kamailio and used
    the one coming from ser.

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=d4a0c89c75e8729d8185c93bb994f85cf0999646
Author: Jan Janak <jan at iptel.org>
Date:   Tue Feb 17 10:49:06 2009 +0100

    Export db_bind_api through the module interface.

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=10617927e31bf83f764defd1db42b6a70372e34a
Author: Jan Janak <jan at iptel.org>
Date:   Tue Feb 17 00:05:25 2009 +0100

    Eliminate conflicts with files imported from ser/mysql modules.
    
     * Comment out MODULE_VERSION, this is already used in mysql_mod.c
     * Prefix the type name of kamailio module data structures with kam_,
       this is how they were renamed in the sip-router repository.
     * Rename the exports structure to kam_exports to avoid conflict with
       the exports structure defined in mysql_mod.c

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=b81f22eed0cb8297c81810ad46b9a6b82109464e
Author: Jan Janak <jan at iptel.org>
Date:   Mon Feb 16 23:17:48 2009 +0100

    DB_* renamed to DB1_* in files originating from kamailio/db_mysql.

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=f1fc20c7cbe36ae60b011dbb6b612632c7635ebb
Author: Jan Janak <jan at iptel.org>
Date:   Mon Feb 16 23:13:16 2009 +0100

    db_res renamed to db1_res in files originating from kamailio/db_mysql.
    
    The structure db_res has been renamed in lib/srdb1 to db1_res, thus we need to
    change the name of the structure in all files originating from
    kamailio/modules/db_mysql (and using lib/srdb1).

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=956802dcd657e128f94c064d24f45dc918e9d2a9
Author: Jan Janak <jan at iptel.org>
Date:   Mon Feb 16 23:09:32 2009 +0100

    db_con renamed to db1_con in files originating from kamailio/db_mysql.
    
    The structure db_con has been renamed in lib/srdb1 to db1_con, thus we
    need to change the name of the structure in all files originating from
    kamailio/modules/db_mysql (and using lib/srdb1).

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=961212734a44bb41755c72916b205403d66b4458
Author: Jan Janak <jan at iptel.org>
Date:   Mon Feb 16 22:58:33 2009 +0100

    Integration of both modules, first step.
    
     * Defines protecting header files from double inclusion fixed to match
       filenames.
     * Linked the module also with srdb1
     * Fixed path to header files in lib/srdb1.
     * Filenames of local included header files prefixed with km_ to match
       their real filenames

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=0ba587f8e2d3d718f92ed111202657cdfa9a58ff
Merge: 21153f2dbc67e80579b9797e56f0f789bbabe093 74f98d3161ed96afff958d48009fb4d7c74b2760
Author: Jan Janak <jan at iptel.org>
Date:   Mon Feb 16 21:54:06 2009 +0100

    Merge of kamaililo db_mysql module history into the sip-router tree.
    
    This is a merge of the full history of the kamailio db_mysql module into the
    git tree of the sip-router project. The purpose of the merge is to preserve
    full history from kamailio svn also in the git repository.
    
    The module db_mysql already exists in the sip-router tree, it contains the
    sources merged from SER cvs (so called version 2 of the module). To avoid file
    conflicts we renamed all files that have been imported from kamailio svn and
    they are prefixed with km_.
    
    Further integration with existing db_mysql module will be commited on top of
    this merge.
    
    * my_filtered: (45 commits)
      - fixed auto_reconnect c&p error
      - add one DBG log to each drivers error condition, that the mem is freed
      - fix one DBG msg (still using module prefix), two small indention fixes
      - partial revert of commit rev5359 for db_mysql module
      - add group functionality to read content from specified sections
      - unify common rows and row allocation functionality in the DB API core
      - change behaviour of db_str2val, this now copy strings
      - move db_mysql and db_unixodbc str2val implementation to the DB core,
      - fix a few errors in doxygen documentation
      - add a comment about the NULL value behaviour of libmysql
      - docs extension: explain fetch_result functionality better to prevent errors
      - remove not reached return statement at the end of val2str functions
      - initial support for BIGINT database in DB core and SQL based database
      - evaluate DECIMAL (and NEW_DECIMAL) type a DB_STRING, and not DB_INT
      - fixed compile error - MYSQL_TYPE_NEWDECIMAL date type is supported
      - fix link entity names, patch from Carsten Gross
      - port from opensips r4526, credits goes to bogdan
      - regenerated all READMEs (make modules-readme exclude_modules="")
      - renaming: changed entities in documentation
      - renaming: openser -> kamailio
      ...

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=21153f2dbc67e80579b9797e56f0f789bbabe093
Merge: 1ee9fa7cf857b8f770a13ab7174a02fef47938d0 5e3324ea2a02ea3dd6528e788ea01a766d4137bc
Author: Jan Janak <jan at iptel.org>
Date:   Mon Feb 16 15:18:02 2009 +0100

    Merge branch 'master' of ssh://janakj@git.sip-router.org/sip-router into mysql
    
    * 'master' of ssh://janakj@git.sip-router.org/sip-router:
      SER replaced with SIP Router in the doxygen main file.

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=1ee9fa7cf857b8f770a13ab7174a02fef47938d0
Merge: 3d314ae153c733e6e7833a0a48a6920338fd4358 83d38c79ed890f96a057da65bd6625d3963aa300
Author: Jan Janak <jan at iptel.org>
Date:   Mon Feb 16 01:07:20 2009 +0100

    Merge branches 'janakj/mysql' and 'master' of ssh://janakj@git.sip-router.org/sip-router into mysql
    
    * 'janakj/mysql' of ssh://janakj@git.sip-router.org/sip-router:
    
    * 'master' of ssh://janakj@git.sip-router.org/sip-router:
      Database flags renamed from DB_* to SRDB_* to avoid conflicts.
      libsrdb1: futex warning fix
      - port from kamailio trunk, r5607
      - sync transformations add/lookup with kamailio
      init_mi_core() exported via mi.h
      mi include file
      MI: core part
      script parsing: while support
      script engine: while() support
      script engine: switch() and break execution
      script engine: switch() fixup and optimizations
      script parsing: C style switch() & case support
      expr engine: minor additions

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=74f98d3161ed96afff958d48009fb4d7c74b2760
Author: Daniel-Constantin Mierla <miconda at gmail.com>
Date:   Tue Feb 10 20:59:58 2009 +0000

    - fixed auto_reconnect c&p error
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@5583 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=d26ebfbb0c1a2c000fd57e2c9eec93e89a4a12cd
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Wed Jan 7 14:46:10 2009 +0000

    - add one DBG log to each drivers error condition, that the mem is freed
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@5431 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=50e2150dc42b128451889025f70fa81709388892
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Wed Jan 7 08:43:22 2009 +0000

    - fix one DBG msg (still using module prefix), two small indention fixes
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@5425 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=f62841030ed319fbf02848cb5088f789ca7b6893
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Mon Jan 5 18:29:35 2009 +0000

    - partial revert of commit rev5359 for db_mysql module
    - generalize db_str2val function in the DB API core, the string copying
      behaviour can now configured (its done for db_postgres, db_unixodbc,
      not done for db_mysql like in the 1.3, 1.4 branches)
    - still TODO: fix NULL case in db_unixodbc, try to fix double copying
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@5423 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=89215f17a700df083e99f16e58becb3d2ab28f0b
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Mon Jan 5 12:27:49 2009 +0000

    - add group functionality to read content from specified sections
      of the mysql config to the db_mysql module, db_url examples:
      * mysql://user:pass@[group]host:port/db or
      * mysql://user:pass@[group]/db or
      * mysql://[group]/db
    - existing functionality is not changed, this is backward compatible
    - check usernames for NULL before comparing in DB API, otherwise
      it would segfault when only a group name is specified
    - patch from Andreas Granig, agranig at sipwise dot com, closes #1815631
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@5413 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=7b7e4369af24b5e5efd9b61fe91e583c3b868d2e
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Mon Dec 15 16:33:22 2008 +0000

    - unify common rows and row allocation functionality in the DB API core
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@5362 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=b32ac21f17c46f6d3d6c60f3a02ddb66ae9061fe
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Mon Dec 15 15:07:12 2008 +0000

    - change behaviour of db_str2val, this now copy strings
    - this change was necessary because in some circumstances the memory that is
      returned from the database driver is used by some other means too fast,
      causes crashed or wrong results later on, this bug is timing related
    - this means for mysql and unixodbc that the performance will be decreased a
      bit, postgres already copied the string, so here nothing change
    - add a new function to DB core API, db_val2str that, usable to convert
      numerical values to a string, and common things like NULL values conversion,
      parameter checks
    - convert mysql, postgres and unixodbc module to use this new function
    - convert postgres function to use the core db_str2val function, the copying
      is now done at a different place, cleanup the code somewhat
    - remove unnecessary assignment if a NULL value is encountered in postgres
    - TODO: fix NULL handling and double copying that is done now for unixodbc
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@5359 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=f828dad0ca2b3962afaae081fc109106ca905042
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Wed Dec 10 18:41:09 2008 +0000

    - move db_mysql and db_unixodbc str2val implementation to the DB core,
      remove the duplicated implementation in the modules
      (preparation for query copy problem)
    - introduced a small regression for the unixodbc in the NULL value handling
      that needs to be fixed
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@5322 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=5ffb6c9ef29a1d02401e0986a0aff058d339338d
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Tue Nov 25 09:34:15 2008 +0000

    - fix a few errors in doxygen documentation
    - sync one function definitions variables with declaration
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@5254 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=c56b4491a617caa82be13a8ed95949f04b7980f0
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Thu Nov 13 16:14:34 2008 +0000

    - add a comment about the NULL value behaviour of libmysql
    - add some doxygen documentation
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@5197 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=205f28ce7929d6a43e4c649b9db25bcd70b9d19b
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Fri Oct 17 08:01:23 2008 +0000

    - docs extension: explain fetch_result functionality better to prevent errors
      because of wrong usage, found from Juha Heinanen
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@5088 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=2c9855261a73e26b008c805035772ccc30d0e495
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Fri Sep 19 11:56:49 2008 +0000

    - remove not reached return statement at the end of val2str functions
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4965 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=2d98f9c41be4b599a061b15765f10264b6da31b9
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Tue Sep 16 16:44:10 2008 +0000

    - initial support for BIGINT database in DB core and SQL based database
      modules, closes patch #2101659
    - some tests for mysql were done, but more testing, especially for the
      postgres and unixodbc would be appreciated
    - Todo: fix other DB modules, at the moment some warnings are printed
      during compilation because of the unhandled BIGINT state
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4928 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=b74e6f6521af86e9fb68e8561c69fcfcd411d7c1
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Mon Sep 15 10:26:35 2008 +0000

    - evaluate DECIMAL (and NEW_DECIMAL) type a DB_STRING, and not DB_INT
    - patch from Alex Hermann, related to #2111861
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4901 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=b863b51e8893c3ec47ceeb795cca3e16103084be
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Tue Sep 2 08:48:31 2008 +0000

    - fixed compile error - MYSQL_TYPE_NEWDECIMAL date type is supported
      only starting with mysql 5.0, Reported by Andrew Pogrebennyk.
      related to opensips bug 2085158, credits to Bogdan
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4801 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=4b96eb712fb0de53ec0b04b97910b8ddfe61400a
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Thu Aug 7 09:15:08 2008 +0000

    - fix link entity names, patch from Carsten Gross
    - regenerate READMEs
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4630 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=5ec58d244b742871503b4a9618b41e99d991cec4
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Wed Aug 6 15:32:44 2008 +0000

    - port from opensips r4526, credits goes to bogdan
    - 64bits compile warnings fixed
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4618 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=409249d61e6fa1a0e478fdfc5dd1ac3dcad957c9
Author: Klaus Darilion <klaus.darilion at pernau.at>
Date:   Wed Aug 6 10:49:19 2008 +0000

    - regenerated all READMEs (make modules-readme exclude_modules="")
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4596 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=fce73b2680d7ff67b5f59636bface85845b82fc7
Author: Klaus Darilion <klaus.darilion at pernau.at>
Date:   Wed Aug 6 10:08:33 2008 +0000

    - renaming: changed entities in documentation
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4594 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=2b8cb3bf2cf0852b5bbe50cf868e0fb20026142e
Author: Klaus Darilion <klaus.darilion at pernau.at>
Date:   Wed Aug 6 08:20:30 2008 +0000

    - renaming: openser -> kamailio
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4585 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=d85d5a2351fca762da65afb66c617ee6e7ed2f75
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Wed Jul 30 09:20:54 2008 +0000

    - fix some FAQ entries, change missing entity, regenerate READMEs
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4524 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=31f52f1d700db9eecdcac45f6ca4d89d7dbd4508
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Mon Jul 28 15:39:28 2008 +0000

    - change name in copyright headers
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4518 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=083502f8c0d1e16c54f44b266c728fa8c84a9fa9
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Thu Jul 24 15:20:11 2008 +0000

    - small doxygen updates (group, syntax), small docs update
    - patch provided from Olle E. Johansson, closes #2025079
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4505 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=a37c75afb9470772e0e44184004b73c42aa81ac6
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Tue Jun 17 13:06:28 2008 +0000

    - fix database related doxygen errors
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4398 689a6050-402a-0410-94f2-e92a70836424

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=24d1af2ac2835c3574ce733e7cdc1509bd3f7ae0
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Tue May 13 12:00:36 2008 +0000

    - add a few more missing '\n' to debug messages
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4163 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=03018e87b81f8bc668f5205f8779fd01f837d004
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Fri May 9 15:50:17 2008 +0000

    - add a few missing '\n' to log messages
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4149 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=bcdd7e786876b4cce49fb0fdea56ec696caa77cd
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Thu May 8 16:12:31 2008 +0000

    - some synchronisations with db_postgres driver
    - move LAST_ROW incrementation to the end of the function, to only update after
      a successfull fetch
    - add two debug messages
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4138 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=386508a1e0826b8dad18b548be373325586b0a51
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Wed May 7 16:36:48 2008 +0000

    - convert existing documentation to doxygen format
    - add some comments, some smaller cleanups
    - small adjustment of the fetch_result function to the postgres one,
      add one DBG message, renames a parameter
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@4124 689a6050-402a-0410-94f2-e92a70836424

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=48855bffd52e5431ad3eb15ad48e3131e331b4f9
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Tue Apr 1 08:54:30 2008 +0000

    - extend debugging with result type information
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3968 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=bcdc7f0b48ba9553c5edb1b8b72eae2094618746
Author: Daniel-Constantin Mierla <miconda at gmail.com>
Date:   Wed Mar 19 20:40:18 2008 +0000

    - titles for admin, devel and faq chapters are defined via entities for coherence and easier management
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3940 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=b25ae3d74e825bf2ed4aceec650696eabf697aa6
Author: Daniel-Constantin Mierla <miconda at gmail.com>
Date:   Wed Mar 19 19:31:30 2008 +0000

    - updated old entity names
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3939 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=f532abc0d09a0d3ca7f8b03655f0b47612c77819
Author: Daniel-Constantin Mierla <miconda at gmail.com>
Date:   Mon Mar 10 11:17:28 2008 +0000

    - content of faq removed (mistakenly added by me after Henning did the cleanup for modules' docs; rev 3839)
    
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3901 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=982fe0441309aae7ddb8df2634423ec07b75e5d8
Author: Daniel-Constantin Mierla <miconda at gmail.com>
Date:   Fri Mar 7 23:03:56 2008 +0000

    - entity &user; replaced with &admin; to obey naming structure (entities to be replaced by xinclude); updated obsolete address tags
    - READMEs regenerated
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3898 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=436dbd2eff3713169a3eb9d1eba58c32e947ee47
Author: Daniel-Constantin Mierla <miconda at gmail.com>
Date:   Fri Mar 7 20:00:30 2008 +0000

    - re-sync READMEs after last updates
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3892 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=dc99867ae19fb740b03de84eac28c7f588b74d45
Author: Daniel-Constantin Mierla <miconda at gmail.com>
Date:   Fri Mar 7 19:52:29 2008 +0000

    - step 2  for the rest of modules to re-link history from sgml to xml files
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3891 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=47241f6d7bbfb0b0705ac61d249a27c569d85d73
Author: Daniel-Constantin Mierla <miconda at gmail.com>
Date:   Fri Mar 7 19:41:22 2008 +0000

    - step 1 for the rest of modules to re-link history from sgml to xml files
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3890 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=949364089c4b64ed6221bc20854491b1e89f80b7
Author: Daniel-Constantin Mierla <miconda at gmail.com>
Date:   Fri Mar 7 18:19:45 2008 +0000

    - modules documentation migrated from sgml to xml docbook format
    - many thanks to Edson <4lists (at) gmail (dot) com> for providing script to replace headers and rename files
    - contact updated
    - follows re-sync with todays changes and update of Makefile to generate README and html files from XML
    
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3886 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=6043e412ff51d1c45723a3a4f5fa6f363a54edee
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Tue Mar 4 13:15:47 2008 +0000

    - change module docs FAQ link to a common one in the doc dir
    - remove module specific FAQ content from the file in doc, this way no FAQ
      content will be created
    - credits for the patch/ the change scripts goes to Edson Gellert Schubert,
      4lists at gmail dot com
    - update all READMEs, for most module docs the FAQ and devel information were
      now removed
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3839 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=f5ccb8c5e5a53a3ceafd1bd9f74594c524b7da67
Author: Daniel-Constantin Mierla <miconda at gmail.com>
Date:   Fri Feb 29 20:38:56 2008 +0000

    - mysql module exports db_bind_api()
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3813 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=00453076cf25097d389598e7e0215f9247959428
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Wed Feb 27 13:53:33 2008 +0000

    - first round of cleanups for documentation
    - remove all FAQ and DEVEL files considered empty in content (no content at all
      or just the default lines)
    - remove of the <RevHistory>/</RevHistory> tag (and of course anything between
      them)
    - remove the comments at the end of the file that begins with
      "<!-- Keep this element at the end of the file"
    - credits for the patch/ the change scripts goes to Edson Gellert Schubert,
      4lists at gmail dot com
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3769 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=c4944cf6c149d90cd125899535b722e50364418d
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Tue Feb 26 14:41:46 2008 +0000

    - small optimization in db_mysql
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3761 689a6050-402a-0410-94f2-e92a70836424

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=12fc5c18943c7389e3e73fc52c7d0561ca94e078
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Fri Feb 8 11:39:46 2008 +0000

    - rename db_mod.* files
    - rename my_con.* files in db_unixodbc
    - fix includes in modules
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3666 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=7eb19c267129000809f6a04a603116981de12086
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Wed Feb 6 15:46:09 2008 +0000

    further changes after the db name change
    - update INSTALL file
    - fix Makefile skip modules variable
    - fix module Makefile, lib name
    - change db_bind_mod to add the db prefix in the function
    - change db url defines in db_berkeley and db_text
    - change database modules names in module struct
    - fix debian packaging
    - fix tests
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3642 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=2b4d3ac4328516824a3dc06d57c057738cce4430
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Wed Feb 6 13:32:59 2008 +0000

    - fix user documentation and rename all sgml file after the name change
      of the database modules
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3639 689a6050-402a-0410-94f2-e92a70836424

URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=4f778298dae1329606ca408b4eebf5b7b85d3256
Author: Henning Westerholt <henning.westerholt at 1und1.de>
Date:   Wed Feb 6 13:10:03 2008 +0000

    - rename database modules to use the 'db_' prefix
    
    
    git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3638 689a6050-402a-0410-94f2-e92a70836424

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