diff options
Diffstat (limited to 'src/mod_irc')
-rw-r--r-- | src/mod_irc/iconv.erl | 26 | ||||
-rw-r--r-- | src/mod_irc/iconv_erl.c | 20 | ||||
-rw-r--r-- | src/mod_irc/mod_irc.erl | 26 | ||||
-rw-r--r-- | src/mod_irc/mod_irc_connection.erl | 26 |
4 files changed, 85 insertions, 13 deletions
diff --git a/src/mod_irc/iconv.erl b/src/mod_irc/iconv.erl index 900efcbbb..150044e87 100644 --- a/src/mod_irc/iconv.erl +++ b/src/mod_irc/iconv.erl @@ -1,13 +1,31 @@ %%%---------------------------------------------------------------------- %%% File : iconv.erl -%%% Author : Alexey Shchepin <alexey@sevcom.net> +%%% Author : Alexey Shchepin <alexey@process-one.net> %%% Purpose : Interface to libiconv -%%% Created : 16 Feb 2003 by Alexey Shchepin <alexey@sevcom.net> -%%% Id : $Id$ +%%% Created : 16 Feb 2003 by Alexey Shchepin <alexey@process-one.net> +%%% +%%% +%%% ejabberd, Copyright (C) 2002-2007 Process-one +%%% +%%% 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 +%%% %%%---------------------------------------------------------------------- -module(iconv). --author('alexey@sevcom.net'). +-author('alexey@process-one.net'). -behaviour(gen_server). diff --git a/src/mod_irc/iconv_erl.c b/src/mod_irc/iconv_erl.c index 3698ee977..905426adc 100644 --- a/src/mod_irc/iconv_erl.c +++ b/src/mod_irc/iconv_erl.c @@ -1,4 +1,22 @@ -/* $Id$ */ +/* + * ejabberd, Copyright (C) 2002-2007 Process-one + * + * 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 + * + */ #include <stdio.h> #include <string.h> diff --git a/src/mod_irc/mod_irc.erl b/src/mod_irc/mod_irc.erl index 05a84efa2..86abae92f 100644 --- a/src/mod_irc/mod_irc.erl +++ b/src/mod_irc/mod_irc.erl @@ -1,13 +1,31 @@ %%%---------------------------------------------------------------------- %%% File : mod_irc.erl -%%% Author : Alexey Shchepin <alexey@sevcom.net> +%%% Author : Alexey Shchepin <alexey@process-one.net> %%% Purpose : IRC transport -%%% Created : 15 Feb 2003 by Alexey Shchepin <alexey@sevcom.net> -%%% Id : $Id$ +%%% Created : 15 Feb 2003 by Alexey Shchepin <alexey@process-one.net> +%%% +%%% +%%% ejabberd, Copyright (C) 2002-2007 Process-one +%%% +%%% 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 +%%% %%%---------------------------------------------------------------------- -module(mod_irc). --author('alexey@sevcom.net'). +-author('alexey@process-one.net'). -behaviour(gen_server). -behaviour(gen_mod). diff --git a/src/mod_irc/mod_irc_connection.erl b/src/mod_irc/mod_irc_connection.erl index 3b34f9a61..7dfa81717 100644 --- a/src/mod_irc/mod_irc_connection.erl +++ b/src/mod_irc/mod_irc_connection.erl @@ -1,13 +1,31 @@ %%%---------------------------------------------------------------------- %%% File : mod_irc_connection.erl -%%% Author : Alexey Shchepin <alexey@sevcom.net> +%%% Author : Alexey Shchepin <alexey@process-one.net> %%% Purpose : -%%% Created : 15 Feb 2003 by Alexey Shchepin <alexey@sevcom.net> -%%% Id : $Id$ +%%% Created : 15 Feb 2003 by Alexey Shchepin <alexey@process-one.net> +%%% +%%% +%%% ejabberd, Copyright (C) 2002-2007 Process-one +%%% +%%% 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 +%%% %%%---------------------------------------------------------------------- -module(mod_irc_connection). --author('alexey@sevcom.net'). +-author('alexey@process-one.net'). -behaviour(gen_fsm). |