Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: RE : Re: RE : Re: RE : Re: R: fixes - Re: MySQL 1.0.0 beta driver released .... (BUG REPORT)

From: petr::krenzelok::trz::cz at: 6-Feb-2006 15:14

Petr Krenzelok wrote:
> Alain Goy=C3=A9 wrote: > >> No, I'm not using an empty password, and my "old_passwords" variable is >> > > >> OFF... >> >> But here is something new: I installed the same mySql version on anothe >> > r > >> machine (Windows server 2003) and (accessing it over the LAN with the >> same Rebol) now it works better... Except for the rubbish printouts >> which are still here: >> >> >> >>>> do %mysql-protocol.r >>>> >>>> >> Script: "MySQL Protocol" (25-Jan-2006) >> MySQL protocol loaded >> >> >>>> ; good password: >>>> db: open mysql://root:mySqlAdmin-10.10.10.14/cist >>>> >>>> >> connecting to: 10.10.10.14 >> {^K^-^Y^-^-root^-=C3=85z0=C2=81^U >> =C5=A0#=C2=B2=C3=AB^X:=C3=BF=C3=9A=C3=A0^XBYX>> > C3=83^-cist^-} > >> >> > > oops, seems like some forgotten debug output to me? I get it here too ... >
yes, I seem to get it fixed. Just one forgotten probe in do-handshake function - look at the code below: send-packet port probe rejoin [ write-int client-param write-int24 (length? port/user) + (length? port/pass) + 7 + std-header-length write-string port/user write-string key: scramble port/pass port write-string port/target ] remove the probe .... Now at least the rubbish output should be gone ... Cheers, -pekr-