I want understand why the data packet received in the Wireshark
program is different of the sent by my delphi application. Can anyone help me?
Here is my code:
if Pos('\x',comandoRede.Comando) > 0 then
begin
bufferS := Explode('\x',comandoRede.Comando);
SetLength(buffer,Length(bufferS)-1);
for J := 0 to Length(Buffer) -1 do
begin
buffer[J] := StrToInt('$'+bufferS[J+1]);
end;
TIdUDPServer(item).SendBuffer(equipamentoRede.IP,
StrToInt(equipamentoRede.Port),buffer,Length(buffer));
end
Here the content of the buffer array:
Here the log of the network sniffer Wireshark
I've tried with the TIDUDPClient as well, but the problem is the same.
Thanks for all help.
In Indy 9,
SendBuffer()
is declared as follows:Note that the
ABuffer
is an untypedvar
. That means you can pass anything to it, and it receives the memory address of whatever variable you pass in.Your
buffer
is declared as a dynamic array (presumably, due to your use ofSetLength()
). A dynamic array is internally implemented as a pointer to a memory block that resides elsewhere in memory. When you pass a dynamic array variable to an untypedvar
parameter, the parameter receives the memory address of the variable itself, not the memory address of the array data that the variable points at. That is why you are seeing "garbage" being sent on the socket - you are actually sending the bytes of the data pointer itself! Your code happens to not crash, because yourbuffer
length is 4 and pointers in Delphi 7 are 4 bytes in size.In order for the
var
parameter to receive the memory address of the actual array data, you must either:index into the first element of the array:
type-cast the array variable to the appropriate pointer type (in this case, presumably
buffer
is anarray of Byte
, so usePByte
) and then dereference the pointer: