Hi all,
I'm attempting to do a very simple Net::Server listening on two different
ports, one being TCP and one being SSLEAY. So far this is working, but as
soon as I make an normal unencrypted connection (telnet) to the SSLEAY port
and *disconnect*, the Net::Server goes into an infinite
Beau E. Cox wrote:
On Monday 20 February 2006 10:06, Tom Allison wrote:
package AuthServer;
@ISA = qw[Net::Server];
my $server = bless {
port => 8081,
}, 'AuthServer';
$server->run();
No. This _works_:
package AuthServer;
use Net::Server;
@ISA = qw[Net::Server];
On Monday 20 February 2006 10:29, Beau E. Cox wrote:
> On Monday 20 February 2006 10:06, Tom Allison wrote:
> > package AuthServer;
> >
> > @ISA = qw[Net::Server];
> >
> > my $server = bless {
> > port => 8081,
> > }, 'AuthServer';
On Monday 20 February 2006 10:06, Tom Allison wrote:
> package AuthServer;
>
> @ISA = qw[Net::Server];
>
> my $server = bless {
> port => 8081,
> }, 'AuthServer';
>
> $server->run();
No. This _works_:
package AuthServer;
use Net::Server;
@IS
On 2/20/06, Beau E. Cox <[EMAIL PROTECTED]> wrote:
> Net::Server works fine for me. I suggest you specify a log file and set
> log-level to the 'debug' value (see the docs).
>From my reading of the docs, what the code in the original posting was
doing seems to be the
On 2/20/2006, "Beau E. Cox" <[EMAIL PROTECTED]> wrote:
>On Sunday 19 February 2006 13:52, Tom Phoenix wrote:
>> On 2/18/06, Tom Allison <[EMAIL PROTECTED]> wrote:
>> > I am trying to set up a server using Net::Server.
>>
>> I believe that
On Sunday 19 February 2006 13:52, Tom Phoenix wrote:
> On 2/18/06, Tom Allison <[EMAIL PROTECTED]> wrote:
> > I am trying to set up a server using Net::Server.
>
> I believe that you omitted a vital piece at the top of your code: a
> package directive.
>
> packag
On 2/18/06, Tom Allison <[EMAIL PROTECTED]> wrote:
> I am trying to set up a server using Net::Server.
I believe that you omitted a vital piece at the top of your code: a
package directive.
package AuthServer;
Without that, your @ISA variable isn't @AuthServer::ISA. But
Tom Allison am Samstag, 18. Februar 2006 21.27:
> I am trying to set up a server using Net::Server.
> Mostly this is out of curiousity more than anything else.
> But following the man pages I got stuck.
>
> I was trying to set up a server to connect to port 8081,
> but none of
I am trying to set up a server using Net::Server.
Mostly this is out of curiousity more than anything else.
But following the man pages I got stuck.
I was trying to set up a server to connect to port 8081,
but none of the configuration options I've put in below appear in the file I'
On Tue, Oct 14, 2003 at 08:19:12PM +0200, Ernest Beinrohr wrote:
> Hi, I'm trying to glue together an console application with readline
> extension (=I can edit the line befor I enter it). How can I make it
> work with Net::Server ?
>
> The readline package is "ru
Hi, I'm trying to glue together an console application with readline
extension (=I can edit the line befor I enter it). How can I make it
work with Net::Server ?
The readline package is "running" on the server size, although it should
run on the client side after he te
12 matches
Mail list logo