Gayatri wrote:
Sorry to trouble you again but John when I run like that it is giving error
as follows

"Couldn't disable Nagle's algorithm: Permission denied"

The code is as follows.....
use Socket ':all';

socket($sock, AF_INET, SOCK_STREAM,$proto)||die "Socket call
            failed";
setsockopt($sock, SOL_SOCKET, &TCP_NODELAY, 1)
                  or die "Couldn't disable Nagle's algorithm: $!\n";

Couldn't disable Nagle's algorithm: Permission denied

does it need to be run under super user privilege??, because when i checked
with super user it works fine without giving error.

Is it a solution???

Or anyother alternate is there??

This thread on Perl Monks should be helpful:

http://www.perlmonks.com/index.pl?node_id=418728



John
--
use Perl;
program
fulfillment

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to