I would like to recode a perl programm in C but I have a problem with the pack perl function.
Let's say I've opened a socket and I want to send a request. With C I would have give as arg a char* containing my request.
But in the perl prog :
$s->Send(pack('N', 0x80000000 + length($blur)) . $blur);
I dont understand what is the result of the pack command. How would I create the same thing with C ?
Per advance thx for your lights
