~ubuntu-branches/debian/sid/kamailio/sid

« back to all changes in this revision

Viewing changes to modules/db_mysql/km_db_mysql.c

  • Committer: Package Import Robot
  • Author(s): Victor Seva
  • Date: 2014-01-06 11:47:13 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20140106114713-t8xidp4arzrnyeya
Tags: 4.1.1-1
* New upstream release
* debian/patches:
  - add upstream fixes
* Added tls outbound websocket autheph dnssec modules
  - openssl exception added to their license
* removing sparc and ia64 from supported archs
  for mono module (Closes: #728915)

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
 
51
51
unsigned int db_mysql_timeout_interval = 2;   /* Default is 6 seconds */
52
52
unsigned int db_mysql_auto_reconnect = 1;     /* Default is enabled   */
 
53
unsigned int db_mysql_insert_all_delayed = 0; /* Default is off */
53
54
 
54
55
/* MODULE_VERSION */
55
56
 
115
116
        dbb->insert_update    = db_mysql_insert_update;
116
117
        dbb->insert_delayed   = db_mysql_insert_delayed;
117
118
        dbb->affected_rows    = db_mysql_affected_rows;
 
119
        dbb->start_transaction= db_mysql_start_transaction;
 
120
        dbb->end_transaction  = db_mysql_end_transaction;
 
121
        dbb->abort_transaction= db_mysql_abort_transaction;
118
122
 
119
123
        return 0;
120
124
}