Author: muffin Date: 2005-01-05 20:24:31 -0500 (Wed, 05 Jan 2005) New Revision: 523
Added: trunk/clients/havirc/ trunk/clients/havirc/havirc.pl Log: Initial commit of HavIRC. Now to make it do something. Added: trunk/clients/havirc/havirc.pl =================================================================== --- trunk/clients/havirc/havirc.pl 2005-01-05 06:55:56 UTC (rev 522) +++ trunk/clients/havirc/havirc.pl 2005-01-06 01:24:31 UTC (rev 523) @@ -0,0 +1,32 @@ +#!/usr/bin/perl +# +# vim: set ft=perl ts=4 sw=4 +# +# HavIRC - A basic IRC to Haver protocol gateway, thus defeating the whole point of Haver's pretty protocol. +# +# Copyright (C) 2005 ElasticMuffin (aka "The Muffin Man", or "Mmm, tasty."). +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +use warnings; +use diagnostics; +use strict; + +use POE qw(Component::Server::TCP Component::Client::TCP); + +use Haver::Config; +use Haver::Protocol::Filter; + +#Do something here. Anything, really.
