diff --git a/iscsi-scst/include/iscsi_u.h b/iscsi-scst/include/iscsi_u.h index 4f883785a..a71bac9ff 100644 --- a/iscsi-scst/include/iscsi_u.h +++ b/iscsi-scst/include/iscsi_u.h @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. + */ + #ifndef _ISCSI_U_H #define _ISCSI_U_H diff --git a/iscsi-scst/kernel/Makefile b/iscsi-scst/kernel/Makefile index e701c775d..643ab61d2 100644 --- a/iscsi-scst/kernel/Makefile +++ b/iscsi-scst/kernel/Makefile @@ -1,5 +1,18 @@ # -# Makefile for the Linux kernel device drivers. +# Makefile for the kernel part of iSCSI-SCST. +# +# Copyright (C) 2007 Vladislav Bolkhovitin +# Copyright (C) 2007 CMS Distribution Limited +# +# 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, version 2 +# of the License. +# +# 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. # # Note! Dependencies are done automagically by 'make dep', which also # removes any old dependencies. DON'T put your own dependencies here diff --git a/iscsi-scst/kernel/config.c b/iscsi-scst/kernel/config.c index 59ad8cd65..03c465801 100644 --- a/iscsi-scst/kernel/config.c +++ b/iscsi-scst/kernel/config.c @@ -1,7 +1,16 @@ /* - * (C) 2004 - 2005 FUJITA Tomonori - * - * This code is licenced under the GPL. + * Copyright (C) 2004 - 2005 FUJITA Tomonori + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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. + * + * 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. */ #include diff --git a/iscsi-scst/kernel/conn.c b/iscsi-scst/kernel/conn.c index b776bc04e..d1cb29fbd 100644 --- a/iscsi-scst/kernel/conn.c +++ b/iscsi-scst/kernel/conn.c @@ -1,7 +1,17 @@ /* - * Copyright (C) 2002-2003 Ardis Technolgies - * - * Released under the terms of the GNU GPL v2.0. + * Copyright (C) 2002-2003 Ardis Technolgies + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. */ #include diff --git a/iscsi-scst/kernel/digest.c b/iscsi-scst/kernel/digest.c index 26848c86a..4d9d3beae 100644 --- a/iscsi-scst/kernel/digest.c +++ b/iscsi-scst/kernel/digest.c @@ -1,9 +1,20 @@ /* - * iSCSI digest handling. - * (C) 2004 - 2006 Xiranet Communications GmbH - * This code is licensed under the GPL. + * iSCSI digest handling. + * + * Copyright (C) 2004 - 2006 Xiranet Communications GmbH + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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. + * + * 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. */ - + #include #include diff --git a/iscsi-scst/kernel/digest.h b/iscsi-scst/kernel/digest.h index 349a60823..82da3a32f 100644 --- a/iscsi-scst/kernel/digest.h +++ b/iscsi-scst/kernel/digest.h @@ -1,13 +1,25 @@ /* - * iSCSI digest handling. - * (C) 2004 Xiranet Communications GmbH - * This code is licensed under the GPL. + * iSCSI digest handling. + * + * Copyright (C) 2004 Xiranet Communications GmbH + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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. + * + * 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. */ #ifndef __ISCSI_DIGEST_H__ #define __ISCSI_DIGEST_H__ extern void digest_alg_available(unsigned int *val); + extern int digest_init(struct iscsi_conn *conn); extern int digest_rx_header(struct iscsi_cmnd *cmnd); diff --git a/iscsi-scst/kernel/event.c b/iscsi-scst/kernel/event.c index 2b0edc262..19e8b472c 100644 --- a/iscsi-scst/kernel/event.c +++ b/iscsi-scst/kernel/event.c @@ -1,9 +1,20 @@ /* - * Event notification code. - * (C) 2005 FUJITA Tomonori - * This code is licenced under the GPL. + * Event notification code. * - * Some functions are based on audit code. + * Copyright (C) 2005 FUJITA Tomonori + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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. + * + * 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. + * + * Some functions are based on audit code. */ #include diff --git a/iscsi-scst/kernel/iscsi.c b/iscsi-scst/kernel/iscsi.c index b152f8d63..c4c40edfa 100644 --- a/iscsi-scst/kernel/iscsi.c +++ b/iscsi-scst/kernel/iscsi.c @@ -1,7 +1,17 @@ /* - * Copyright (C) 2002-2003 Ardis Technolgies - * - * Released under the terms of the GNU GPL v2.0. + * Copyright (C) 2002-2003 Ardis Technolgies + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. */ #include diff --git a/iscsi-scst/kernel/iscsi.h b/iscsi-scst/kernel/iscsi.h index 2fea9bfc1..1bd9039ab 100644 --- a/iscsi-scst/kernel/iscsi.h +++ b/iscsi-scst/kernel/iscsi.h @@ -1,7 +1,17 @@ /* - * Copyright (C) 2002-2003 Ardis Technolgies - * - * Released under the terms of the GNU GPL v2.0. + * Copyright (C) 2002-2003 Ardis Technolgies + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. */ #ifndef __ISCSI_H__ diff --git a/iscsi-scst/kernel/iscsi_dbg.h b/iscsi-scst/kernel/iscsi_dbg.h index c55f90f50..56f894a24 100644 --- a/iscsi-scst/kernel/iscsi_dbg.h +++ b/iscsi-scst/kernel/iscsi_dbg.h @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. + */ + #ifndef ISCSI_DBG_H #define ISCSI_DBG_H diff --git a/iscsi-scst/kernel/iscsi_hdr.h b/iscsi-scst/kernel/iscsi_hdr.h index 1233dd21e..6d5a1683b 100644 --- a/iscsi-scst/kernel/iscsi_hdr.h +++ b/iscsi-scst/kernel/iscsi_hdr.h @@ -1,7 +1,17 @@ /* - * Copyright (C) 2002-2003 Ardis Technolgies - * - * Released under the terms of the GNU GPL v2.0. + * Copyright (C) 2002-2003 Ardis Technolgies + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. */ #ifndef __ISCSI_HDR_H__ diff --git a/iscsi-scst/kernel/nthread.c b/iscsi-scst/kernel/nthread.c index 67a49ac97..1a6529e08 100644 --- a/iscsi-scst/kernel/nthread.c +++ b/iscsi-scst/kernel/nthread.c @@ -1,7 +1,18 @@ /* - * Network thread. - * (C) 2004 - 2005 FUJITA Tomonori - * This code is licenced under the GPL. + * Network threads. + * + * Copyright (C) 2004 - 2005 FUJITA Tomonori + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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. + * + * 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. */ #include diff --git a/iscsi-scst/kernel/param.c b/iscsi-scst/kernel/param.c index d66773b62..aeef10a76 100644 --- a/iscsi-scst/kernel/param.c +++ b/iscsi-scst/kernel/param.c @@ -1,7 +1,16 @@ /* - * (C) 2005 FUJITA Tomonori - * - * This code is licenced under the GPL. + * Copyright (C) 2005 FUJITA Tomonori + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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. + * + * 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. */ #include "iscsi.h" diff --git a/iscsi-scst/kernel/session.c b/iscsi-scst/kernel/session.c index c3580075e..ce20ee09f 100644 --- a/iscsi-scst/kernel/session.c +++ b/iscsi-scst/kernel/session.c @@ -1,7 +1,17 @@ /* - * Copyright (C) 2002-2003 Ardis Technolgies - * - * Released under the terms of the GNU GPL v2.0. + * Copyright (C) 2002-2003 Ardis Technolgies + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. */ #include "iscsi.h" diff --git a/iscsi-scst/kernel/target.c b/iscsi-scst/kernel/target.c index 0d09eb236..7117c0508 100644 --- a/iscsi-scst/kernel/target.c +++ b/iscsi-scst/kernel/target.c @@ -1,7 +1,17 @@ /* - * Copyright (C) 2002-2003 Ardis Technolgies - * - * Released under the terms of the GNU GPL v2.0. + * Copyright (C) 2002-2003 Ardis Technolgies + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. */ #include diff --git a/iscsi-scst/usr/Makefile b/iscsi-scst/usr/Makefile index 4fbde899e..c7cf12bb4 100644 --- a/iscsi-scst/usr/Makefile +++ b/iscsi-scst/usr/Makefile @@ -1,3 +1,19 @@ +# +# Makefile for the user space part of iSCSI-SCST. +# +# Copyright (C) 2007 Vladislav Bolkhovitin +# Copyright (C) 2007 CMS Distribution Limited +# +# 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, version 2 +# of the License. +# +# 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. + SRCS_D = iscsid.c iscsi_scstd.c conn.c session.c target.c message.c ctldev.c \ log.c chap.c event.c param.c plain.c isns.c OBJS_D = $(SRCS_D:.c=.o) diff --git a/iscsi-scst/usr/chap.c b/iscsi-scst/usr/chap.c index 48de87e32..1fdee6f21 100644 --- a/iscsi-scst/usr/chap.c +++ b/iscsi-scst/usr/chap.c @@ -1,17 +1,27 @@ /* - * chap.c - support for (mutual) CHAP authentication. - * (C) 2004 Xiranet Communications GmbH - * available under the terms of the GNU GPL v2.0 + * chap.c - support for (mutual) CHAP authentication. * - * heavily based on code from iscsid.c: - * Copyright (C) 2002-2003 Ardis Technolgies , - * licensed under the terms of the GNU GPL v2.0, + * Copyright (C) 2004 Xiranet Communications GmbH + * Copyright (C) 2002-2003 Ardis Technolgies , + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited * - * and code taken from UNH iSCSI software: - * Copyright (C) 2001-2003 InterOperability Lab (IOL) - * University of New Hampshire (UNH) - * Durham, NH 03824 - * licensed under the terms of the GNU GPL v2.0 + * and code taken from UNH iSCSI software: + * Copyright (C) 2001-2003 InterOperability Lab (IOL) + * University of New Hampshire (UNH) + * Durham, NH 03824 + * + * 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, version 2 + * of the License. + * + * 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. + * + * Heavily based on code from UNH iSCSI iscsid.c */ #include diff --git a/iscsi-scst/usr/config.h b/iscsi-scst/usr/config.h index 0f44544b7..00d6bf02a 100644 --- a/iscsi-scst/usr/config.h +++ b/iscsi-scst/usr/config.h @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. + */ + #ifndef CONFIG_H #define CONFIG_H diff --git a/iscsi-scst/usr/conn.c b/iscsi-scst/usr/conn.c index 110585cbd..99a9c2ec3 100644 --- a/iscsi-scst/usr/conn.c +++ b/iscsi-scst/usr/conn.c @@ -1,7 +1,17 @@ /* - * Copyright (C) 2002-2003 Ardis Technolgies - * - * Released under the terms of the GNU GPL v2.0. + * Copyright (C) 2002-2003 Ardis Technolgies + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. */ #include diff --git a/iscsi-scst/usr/ctldev.c b/iscsi-scst/usr/ctldev.c index d25beb57b..8826a0cef 100644 --- a/iscsi-scst/usr/ctldev.c +++ b/iscsi-scst/usr/ctldev.c @@ -1,7 +1,16 @@ /* - * (C) 2004 - 2005 FUJITA Tomonori - * - * This code is licenced under the GPL. + * Copyright (C) 2004 - 2005 FUJITA Tomonori + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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. + * + * 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. */ #include diff --git a/iscsi-scst/usr/event.c b/iscsi-scst/usr/event.c index 9d7a4d146..460412707 100644 --- a/iscsi-scst/usr/event.c +++ b/iscsi-scst/usr/event.c @@ -1,10 +1,21 @@ /* - * Event notification code. - * (C) 2005 FUJITA Tomonori - * This code is licenced under the GPL. + * Event notification code. * - * Some functions are based on open-iscsi code - * written by Dmitry Yusupov, Alex Aizman. + * Copyright (C) 2005 FUJITA Tomonori + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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. + * + * 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. + * + * Some functions are based on open-iscsi code + * written by Dmitry Yusupov, Alex Aizman. */ #include diff --git a/iscsi-scst/usr/iscsi_adm.c b/iscsi-scst/usr/iscsi_adm.c index 12e01c482..7270eb1aa 100644 --- a/iscsi-scst/usr/iscsi_adm.c +++ b/iscsi-scst/usr/iscsi_adm.c @@ -1,9 +1,18 @@ /* - * iscsi_adm - manage iSCSI-SCST Target software. + * iscsi_adm - manage iSCSI-SCST Target software. * - * (C) 2004 - 2005 FUJITA Tomonori - * - * This code is licenced under the GPL. + * Copyright (C) 2004 - 2005 FUJITA Tomonori + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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. + * + * 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. */ #include diff --git a/iscsi-scst/usr/iscsi_adm.h b/iscsi-scst/usr/iscsi_adm.h index 698a0ab3e..771be05b8 100644 --- a/iscsi-scst/usr/iscsi_adm.h +++ b/iscsi-scst/usr/iscsi_adm.h @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. + */ + #ifndef _ISCSI_ADM_H #define _ISCSI_ADM_H diff --git a/iscsi-scst/usr/iscsi_hdr.h b/iscsi-scst/usr/iscsi_hdr.h index 7e2e3e16f..21460b040 100644 --- a/iscsi-scst/usr/iscsi_hdr.h +++ b/iscsi-scst/usr/iscsi_hdr.h @@ -1,7 +1,17 @@ /* - * Copyright (C) 2002-2003 Ardis Technolgies - * - * Released under the terms of the GNU GPL v2.0. + * Copyright (C) 2002-2003 Ardis Technolgies + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. */ #ifndef ISCSI_HDR_H diff --git a/iscsi-scst/usr/iscsi_scstd.c b/iscsi-scst/usr/iscsi_scstd.c index d843aa053..cb90eddf4 100644 --- a/iscsi-scst/usr/iscsi_scstd.c +++ b/iscsi-scst/usr/iscsi_scstd.c @@ -1,7 +1,17 @@ /* - * Copyright (C) 2002-2003 Ardis Technolgies - * - * Released under the terms of the GNU GPL v2.0. + * Copyright (C) 2002-2003 Ardis Technolgies + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. */ #include diff --git a/iscsi-scst/usr/iscsid.c b/iscsi-scst/usr/iscsid.c index 393a1ae29..7112215aa 100644 --- a/iscsi-scst/usr/iscsid.c +++ b/iscsi-scst/usr/iscsid.c @@ -1,7 +1,17 @@ /* - * Copyright (C) 2002-2003 Ardis Technolgies - * - * Released under the terms of the GNU GPL v2.0. + * Copyright (C) 2002-2003 Ardis Technolgies + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. */ #include diff --git a/iscsi-scst/usr/iscsid.h b/iscsi-scst/usr/iscsid.h index 6c997831a..01b63a2ed 100644 --- a/iscsi-scst/usr/iscsid.h +++ b/iscsi-scst/usr/iscsid.h @@ -1,7 +1,17 @@ /* - * Copyright (C) 2002-2003 Ardis Technolgies - * - * Released under the terms of the GNU GPL v2.0. + * Copyright (C) 2002-2003 Ardis Technolgies + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. */ #ifndef ISCSID_H diff --git a/iscsi-scst/usr/isns.c b/iscsi-scst/usr/isns.c index 5dd60a7ed..2e47ce54c 100644 --- a/iscsi-scst/usr/isns.c +++ b/iscsi-scst/usr/isns.c @@ -2,6 +2,8 @@ * iSNS functions * * Copyright (C) 2006 FUJITA Tomonori + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as diff --git a/iscsi-scst/usr/isns_proto.h b/iscsi-scst/usr/isns_proto.h index a070d0331..903987578 100644 --- a/iscsi-scst/usr/isns_proto.h +++ b/iscsi-scst/usr/isns_proto.h @@ -2,6 +2,8 @@ * iSNS protocol data types * * Copyright (C) 2006 FUJITA Tomonori + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as diff --git a/iscsi-scst/usr/log.c b/iscsi-scst/usr/log.c index fd58cac42..7b084eb6a 100644 --- a/iscsi-scst/usr/log.c +++ b/iscsi-scst/usr/log.c @@ -1,7 +1,17 @@ /* - * Copyright (C) 2002-2003 Ardis Technolgies - * - * Released under the terms of the GNU GPL v2.0. + * Copyright (C) 2002-2003 Ardis Technolgies + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. */ #include diff --git a/iscsi-scst/usr/message.c b/iscsi-scst/usr/message.c index 3e3c5371d..3ee7b0849 100644 --- a/iscsi-scst/usr/message.c +++ b/iscsi-scst/usr/message.c @@ -1,7 +1,16 @@ /* - * (C) 2004 - 2005 FUJITA Tomonori - * - * This code is licenced under the GPL. + * Copyright (C) 2004 - 2005 FUJITA Tomonori + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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. + * + * 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. */ #include diff --git a/iscsi-scst/usr/misc.h b/iscsi-scst/usr/misc.h index c467aabc4..bad5ca0f1 100644 --- a/iscsi-scst/usr/misc.h +++ b/iscsi-scst/usr/misc.h @@ -1,5 +1,16 @@ /* - * Released under the terms of the GNU GPL v2.0. + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. */ #ifndef MISC_H diff --git a/iscsi-scst/usr/param.c b/iscsi-scst/usr/param.c index 27249c6db..9be67224e 100644 --- a/iscsi-scst/usr/param.c +++ b/iscsi-scst/usr/param.c @@ -1,7 +1,16 @@ /* - * (C) 2005 FUJITA Tomonori - * - * This code is licenced under the GPL. + * Copyright (C) 2005 FUJITA Tomonori + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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. + * + * 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. */ #include diff --git a/iscsi-scst/usr/param.h b/iscsi-scst/usr/param.h index 1075c1aac..3fbdd0040 100644 --- a/iscsi-scst/usr/param.h +++ b/iscsi-scst/usr/param.h @@ -1,7 +1,16 @@ /* - * (C) 2005 FUJITA Tomonori - * - * This code is licenced under the GPL. + * Copyright (C) 2005 FUJITA Tomonori + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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. + * + * 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. */ #ifndef PARAMS_H diff --git a/iscsi-scst/usr/plain.c b/iscsi-scst/usr/plain.c index 2f618db04..aed4e4785 100644 --- a/iscsi-scst/usr/plain.c +++ b/iscsi-scst/usr/plain.c @@ -1,8 +1,18 @@ /* - * Plain file-based configuration file code. + * Plain file-based configuration file code. * - * (C) 2005 FUJITA Tomonori - * This code is licenced under the GPL. + * Copyright (C) 2005 FUJITA Tomonori + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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. + * + * 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. */ #include diff --git a/iscsi-scst/usr/session.c b/iscsi-scst/usr/session.c index e4b75b67d..f487d859e 100644 --- a/iscsi-scst/usr/session.c +++ b/iscsi-scst/usr/session.c @@ -1,7 +1,17 @@ /* - * Copyright (C) 2002-2003 Ardis Technolgies - * - * Released under the terms of the GNU GPL v2.0. + * Copyright (C) 2002-2003 Ardis Technolgies + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. */ #include diff --git a/iscsi-scst/usr/target.c b/iscsi-scst/usr/target.c index 5c33e3e6c..0941c870a 100644 --- a/iscsi-scst/usr/target.c +++ b/iscsi-scst/usr/target.c @@ -1,7 +1,17 @@ /* - * Copyright (C) 2002-2003 Ardis Technolgies - * - * Released under the terms of the GNU GPL v2.0. + * Copyright (C) 2002-2003 Ardis Technolgies + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. */ #include diff --git a/iscsi-scst/usr/types.h b/iscsi-scst/usr/types.h index 96d23a886..b4a27a0d1 100644 --- a/iscsi-scst/usr/types.h +++ b/iscsi-scst/usr/types.h @@ -1,7 +1,17 @@ /* - * Copyright (C) 2002-2003 Ardis Technolgies - * - * Released under the terms of the GNU GPL v2.0. +* Copyright (C) 2002-2003 Ardis Technolgies + * Copyright (C) 2007 Vladislav Bolkhovitin + * Copyright (C) 2007 CMS Distribution Limited + * + * 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, version 2 + * of the License. + * + * 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. */ #ifndef TYPES_H