Hi all, can some1 explain, how can I send packets like : 0000 53 7c 45 4D 50 0A 00 to a opened socket? I've tried to search on forum and google..but that didn't helped me at all...thx :handsdown:
TCPStartup()
$hSocket = TCPConnect("127.0.0.1",1234)
Global $iSendRaw = True ;Try both True and False. Both should work
Global $sString = "0000 53 7c 45 4D 50 0A 00" ;Or ClipGet()
$sString = "0x" & StringReplace($sString, " ", "")
If Not $iSendRaw Then $sString = BinaryToString($sString)
TcpSend($hSocket, $sString)