Hallo!
Ich habe habe z.Z zwei mysql server laufen ( wg. umstellung im produktiv system ), und möchte einen bestimmten für proftpd benutzen. hier ist ein hack/patch für die mod_sql_mysql.c datei als Motivation:
int port;
char *socket;
if( (conn->port[0] >= '1') && (conn->port[0] <= '0') )
{
port = (int) strtol(conn->port, (char **) NULL, 10);
socket = 0;
}
else
{
port = 0;
socket = conn->port;
}
if (!mysql_real_connect(conn->mysql, conn->host, conn->user, conn->pass,
conn->db, port, socket,
CLIENT_INTERACTIVE)) {
...
( ca. Zeile 480 )
Gero