Custom Query (3927 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (277 - 279 of 3927)

Ticket Resolution Summary Owner Reporter
#1573 Fixed TCPConnect TCPTimeout Jon s.c.a.r.y@…
Description

Hello,

i don´t really know, if this is a bug or maybe wrong/ unclear in the helpfile.

There is an option (Opt("TCPTimeout",100)), which should timeout the tcp-functions when there is no communication.

But this timeout seems to do nothing, if you maybe try to connect via TCPConnect to an IP+Port which is not reachable. It tooks about 20 sec. after the script continues working (and there is no possibility to stop this, because adblibregister does also not catch).

#1584 Fixed web - outdated year Jon Zedna
Description

http://www.autoitscript.com/autoit3/index.shtml at bottom of this web page is outdated year in label "©1999-2009 Jonathan Bennett"

There should be 2010 year.

#1586 Fixed DllStructSetData(char, 1, string-with-NUL-character), junk data(?) Jon anonymous
Description

kinda expect the character part to end up with 0x61.00.63.00.64 or 0x61.00.00.00.00 anything else (junk data?) seems like a bug to me.

Local $sOrg = 'a' & Chr(0) & 'c' & Chr(0) & 'd' ;; -> a[NUL]c[NUL]d
ConsoleWrite('StringLen($sOrg) = ' & StringLen($sOrg) & @CRLF) ;; 5
$sCnv = StringReplace($sOrg, Chr(0), Chr(0), 0, 1) ;; -> a[NUL]c[NUL]d
$sCnv = StringReplace($sOrg, Chr(0), '[nul]', 0, 1) ;; -> a[nul]c[nul]d
ConsoleWrite('$sCnv = ' & $sCnv & @CRLF)

Local $tChar = DllStructCreate('char[5]')
Local $tByte = DllStructCreate('byte[5]', DllStructGetPtr($tChar)) ;; assuming ansi.
DllStructSetData($tByte, 1, $sOrg) ;; -> 0x61.00.63.00.64
ConsoleWrite('$tByte = ' & DllStructGetData($tByte, 1) & @CRLF)
DllStructSetData($tChar, 1, $sOrg) ;; -> 0x61.00.99.01.20 -> a.NUL.(junk?)
ConsoleWrite('$tByte = ' & DllStructGetData($tByte, 1) & @CRLF)

;; $sOrg still unchanged. just making sure.
$sCnv = StringReplace($sOrg, Chr(0), '[nul]', 0, 1) ;; -> a[nul]c[nul]d
ConsoleWrite('$sCnv = ' & $sCnv & @CRLF)

but than again ...

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.