devilpanther
Programmer
I want to send over a socket non-readable chars, for example: 0x01
So I treid to do the next:
But it's not working right, the char being sent is not the one I want... it's just random junk at best.
Is there a special way to send hex values over sockets?
So I treid to do the next:
Code:
print $sock 0x01;
But it's not working right, the char being sent is not the one I want... it's just random junk at best.
Is there a special way to send hex values over sockets?