Search found 2 matches

Go to advanced search

by cyplp
06 Aug 2004 12:24
Forum: VideoLAN Server and miniSAPserver
Topic: trouble with perl and telnet
Replies: 1
Views: 2000

the next source code works ... #!/usr/bin/perl use strict; use warnings; use Net::Telnet (); my $t; $t = new Net::Telnet(Port => 9999); $t->open("192.168.0.166"); $t->waitfor('/Login:/'); $t->print("bozo"); $t->waitfor('/Password:/'); $t->print("bozo"); $t->waitfor('/\@...
by cyplp
22 Jul 2004 09:32
Forum: VideoLAN Server and miniSAPserver
Topic: trouble with perl and telnet
Replies: 1
Views: 2000

trouble with perl and telnet

Hello I need to manage some vls streamers by the telnet interface. So I write a perl script for manage the server and I can't read the reply of telnet code example : #!/usr/bin/perl use strict; use warnings; use Net::Telnet (); my $t; $t = new Net::Telnet(Port => 9999); #Prompt => '/\@vls>/'); $t->o...

Go to advanced search