Microsoft
Software
Hardware
Network
Question : What am i doin wrong
sub Connect
{
print "Connecting to $host on $port...\n";
my $sock = new IO::Socket::INET( PeerAddr => 'C:\Program Files\Spirent Communications\SimPLEX\sim
plex.exe',
PeerPort => '15650',
Proto => 'tcp' );
die "Error: Could not create socket - $!\n" unless defined( $sock );
$sock->autoflush( 1 );
print "Sending $command command to $host on $port...\n";
$sock->send($command);
while (my $buffer = <$sock>) {
print "Server data:\n";;
print "$buffer\n";
}
$sock->close;
die "Error: Could not fork process - $!\n" unless defined( my $pid = fork() );
if( $pid ) {
while( my $buffer = <$sock> ) {
print "Server data:\n";;
print "$buffer\n";
}
close( $sock );
kill( "TERM", $pid );
} else {
print "Sending $command command to $host on $port...\n";
$sock->send( $command );
}
}
it doesnt connect
Answer : What am i doin wrong
First of all, PeerAddr should be ip address or host name of server, that listen port 15650, not path to program, like
my $sock = new IO::Socket::INET( PeerAddr => '192.168.1.1', PeerPort => '15650', Proto => 'tcp' );
Random Solutions
properties and methods for object
Transferring FSMO roles to windows 2008 server
Content database not showing data after upgrade and mapping
How do I manage connection to MySql db from VB.NET ?
How do you mirror a hard drive
Delete Old Exchange Emails
Issues after removing SMS 2003 Management point
Problem opening office 2007 excel files in office 2008 Mac os x.
How Can I Disable Calendar Event Notifications in Entourage 2008?
Strictly Dreamweaver: Anyone with experience on RSS extension to Dreamweaver CS4 out there?