I see that one needs to create a class of the new authenticator module inheriting from the class GkAuthenticator
e.g.
class dummyAuth : public GkAuthenticator
{
//implementaion
}
and then register the class in the file e.g. dummy.cxx
namespace
{
GkAuthCreator<dummyAuth> DummyAuthCreator("dummyAuth");
}
The next things to do I presume would be to define...
Hello everyone, gnugk has a few authentication tools i.e. Radius, sql etc. What steps are need to be taken in order to add a new module?
Regards
Mushtaq.