my $zahl1=23; my $zahl2=42; my $zahl3=0815; # unsigned 8bit Integer (Char -> C) # unsigned 16bit Integer (Short -> S) # signed 32bit Integer (Long -> l) # unsigned 8bit Integer (Char -> C) ## Little Endian (X86 Order) # on x86 Processors #my $out=pack('CSlC',$zahl1,$zahl2,$zahl3,$zahl1); # on PPC or other not x86 Processors force Little Endian #my $out=pack('CS>lC',$zahl1,$zahl2,$zahl3,$zahl1); print SOCKET $out;