Example #1
0
 static void Main(string[] args)
 {
     IrcServicesConfig conf = new IrcServicesConfig("192.168.0.156",7092,"password","test.services.seersirc.net","42","A test for the framework yo!","Quartzite version Something");
     conf.Ssl = false;
     IrcServices serv = new IrcServices(conf);
     serv.Connect();
     serv.Run();
 }
Example #2
0
 public Unreal(IrcServices services, IrcParser parser)
     : base(services, parser)
 {
 }
Example #3
0
 public ProtocolBase(IrcServices services, IrcParser parser)
 {
     Parser = parser;
     Services = services;
 }