summaryrefslogtreecommitdiffstats
path: root/LICENSE
Commit message (Collapse)AuthorAge
* copied mysql driver to mod_log_sql_pgsql.c to start on PostgreSQL driverGravatar Edward Rudd 2004-04-10
| | | | | added keyword ID expansion to source files and removed old CVS headers from others
* moved create_tables.sql and make_combined_log.pl into contrib directory.Gravatar Edward Rudd 2004-02-12
| | | | | | Added contrib directory to build system. Updated new maintainer information in AUTHORS,LICENSE, and manual.xml
* Initial revisionGravatar Edward Rudd 2003-12-20
|
* Lots of changes & bugfixes as requested on the list. Pre-1 of 1.17.1.17pre1Gravatar Christopher Powell 2002-06-27
|
* Removed (TM)s.Gravatar Christopher Powell 2002-05-14
|
* Added notes logging capability. This is a commit prior to a lot of workGravatar Christopher Powell 2002-05-14
| | | | | that will rename mod_log_mysql to mod_log_sql.
* Initial revision1.09Gravatar Christopher Powell 2001-11-28
t2; 63 char* host_str; 62 char* host_str; 64 char* port_str; 63 char* scope_id; 65 int port; 64 apr_port_t port; 66 65 67 host_str = apr_strtok(split,":", &split2); 66 rv = apr_parse_addr_port(&host_str, &scope_id, &port, split, p); 68 port_str = apr_strtok(NULL,":", &split2); 67 if(rv != APR_SUCCESS) { 69 if (!port_str) { 68 ap_log_error(APLOG_MARK, APLOG_CRIT, rv, s, 70 port = 11211; /* default port */ 69 "[gnutls_cache] Failed to Parse Server: '%s'", split); 70 return rv; 71 } 72 73 if(host_str == NULL) { 74 ap_log_error(APLOG_MARK, APLOG_CRIT, rv, s, 75 "[gnutls_cache] Failed to Parse Server, " 76 "no hostname specified: '%s'", split); 77 return rv; 71 } 78 } 72 else { 79 73 port = atoi(port_str); 80 if (port == 0) { 81 port = 11211; /* default port */ 74 } 82 } 75 83 76 /* Should Max Conns be (thread_limit / nservers) ? */ 84 /* Should Max Conns be (thread_limit / nservers) ? */