in reply to Need help with Socket recv
To see your current socket buffer size you can use the following codesetsockopt($MySocket,SOL_SOCKET,SO_RCVBUF,100000);
Again, thanks for all the inputmy $packed = getsockopt($MySocket,SOL_SOCKET,SO_RCVBUF); my $mybuffer = unpack("I", $packed); print "\n Buffer size : $mybuffer \n";
|
|---|