File: 002-mod_log_sql.h.patch

package info (click to toggle)
libapache-mod-log-sql 1.100-16.4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,060 kB
  • sloc: sh: 2,470; ansic: 2,264; xml: 2,010; makefile: 323; perl: 250; sql: 64
file content (26 lines) | stat: -rw-r--r-- 997 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From: Thomas Goirand <thomas@goirand.fr>
Subject: Add a scoreboard feature to mod_log_sql
 You can keep tracks of number of hits and bytes for each of the
 hosted websites.

--- libapache-mod-log-sql/mod_log_sql.h.orig	2007-08-06 00:03:47.000000000 +0800
+++ libapache-mod-log-sql/mod_log_sql.h	2007-08-06 00:52:49.000000000 +0800
@@ -67,7 +67,8 @@
 	LOGSQL_TABLE_NOTES,
 	LOGSQL_TABLE_HEADERSOUT,
 	LOGSQL_TABLE_HEADERSIN,
-	LOGSQL_TABLE_COOKIES
+	LOGSQL_TABLE_COOKIES,
+	LOGSQL_TABLE_SCORE
 } logsql_tabletype;
 
 /* All Tables */
@@ -96,6 +97,8 @@
 	/* create a SQL table named table_name of table_type */
 	logsql_table_ret (*create_table)(request_rec *r, logsql_dbconnection *db,
 		logsql_tabletype table_type, const char *table_name);
+        /* enclose an insert query with parameters to make it an insert ignore */
+        const char * (*enclose_insert_ignore)(const char* insert_query,request_rec *r);
 } logsql_dbdriver;
 
 LOGSQL_DECLARE(void) log_sql_register_driver(apr_pool_t *p,