diff options
author | Christopher Powell | 2001-12-07 03:52:56 +0000 |
---|---|---|
committer | Christopher Powell | 2001-12-07 03:52:56 +0000 |
commit | 3ddc5c9b88226097f93d4c21ea51f7a37f0e56f3 (patch) | |
tree | b141b4bfc8532e3640ca6dd7204538f74079742e /access_log.sql | |
parent | 84fbbe1411ec93b3aa97ad535f0f9ce737f62a52 (diff) |
Added a mysql_close mechanism to the child exit process to fix MySQL
complaining about bad communication packets. Considerable code reorg
and cleanup.
Diffstat (limited to 'access_log.sql')
-rw-r--r-- | access_log.sql | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/access_log.sql b/access_log.sql index 46d5a6e..a667494 100644 --- a/access_log.sql +++ b/access_log.sql | |||
@@ -10,16 +10,16 @@ create table access_log ( | |||
10 | remote_user varchar(50) not null, | 10 | remote_user varchar(50) not null, |
11 | request_duration smallint not null, | 11 | request_duration smallint not null, |
12 | request_line varchar(255), | 12 | request_line varchar(255), |
13 | request_method not null, | 13 | request_method varchar(6) not null, |
14 | request_protocol not null, | 14 | request_protocol varchar(10) not null, |
15 | request_time char(28), | 15 | request_time char(28), |
16 | request_uri varchar(50) not null, | 16 | request_uri varchar(50) not null, |
17 | server_port smallint unsigned, | 17 | server_port smallint unsigned, |
18 | ssl_cipher varchar(25), | 18 | ssl_cipher varchar(25), |
19 | ssl_keysize smallint | 19 | ssl_keysize smallint unsigned, |
20 | ssl_maxkeysize smallint, | 20 | ssl_maxkeysize smallint unsigned, |
21 | status smallint not null, | 21 | status smallint not null, |
22 | time_stamp int unsigned not null, | 22 | time_stamp int unsigned not null, |
23 | virtual_host varchar(50) not null, | 23 | virtual_host varchar(50) not null |
24 | ) | 24 | ) |
25 | 25 | ||