Page 1 of 1

ssl doesnt work :<

Posted: Mon Oct 09, 2006 6:18 pm
by peter
hey all,
well i just wanted to ask if some1 can tell me y my ssl doesnt work :/
i always get this

(20:14:40) * [10053] Software caused connection abort

this is my cfg:

class servers {
pingfreq 90;
maxclients 100;
sendq 1000000;
};


listen *:7666-7669
{

};
listen *:9000-9001
{
options
{
ssl;
clientsonly;
};
};


btw iam usin it on windows

thanks :>


e//oh well this is in my unrealircd.log

* No log { } block found -- using default: errors will be logged to 'ircd.log'

and in the ircd.log is nothin suspecious

Posted: Mon Oct 09, 2006 9:58 pm
by Jobe
Which IRC client are you using?

If it's mIRC did you prefix the port number with a +?

Re: ssl doesnt work :<

Posted: Tue Oct 10, 2006 9:13 pm
by White_Magic
peter wrote:this is my cfg:

class servers {
pingfreq 90;
maxclients 100;
sendq 1000000;
};


listen *:7666-7669
{

};
listen *:9000-9001
{
options
{
ssl;
clientsonly;
};
};
btw why did u paste the server class block? O_o did u mean to paste the clients block instead?

also, try moving the braces to the same line as the block name...

Code: Select all

listen *:9000-9001 {
Options {
ssl;
clientsonly;
};
};