1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
This package was debianized by Takuro Kitame <kitame@debian.org> on
Wed, 19 May 1999 13:12:10 +0900.
It was downloaded from https://ja.osdn.net/projects/stone/
Upstream Author: Hiroaki Sengoku <sengoku@gcd.forus.or.jp>
Copyright:
License is GPL2. It's explained by COPYING file.
see /usr/share/common-licenses/GPL
And,
Specific permission is granted for the GPLed code in this distribition
to be linked to OpenSSL without invoking GPL clause 2(b).
/*
* stone.c simple repeater
* Copyright(c)1995-2001 by Hiroaki Sengoku <sengoku@gcd.org>
* Version 1.0 Jan 28, 1995
* Version 1.1 Jun 7, 1995
* Version 1.2 Aug 20, 1995
* Version 1.3 Feb 16, 1996 relay UDP
* Version 1.5 Nov 15, 1996 for Win32
* Version 1.6 Jul 5, 1997 for SSL
* Version 1.7 Aug 20, 1997 return packet of UDP
* Version 1.8 Oct 18, 1997 pseudo parallel using SIGALRM
* Version 2.0 Nov 3, 1997 http proxy & over http
* Version 2.1 Nov 14, 1998 respawn & pop
* Version 2.2 Posix Thread, XferBufMax
*
* 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, 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 with
* your Debian GNU/Linux system, in /usr/share/common-licenses/GPL, or with
* the Debian GNU/Linux bash source package as the file COPYING. If not,
* write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
cryptoapi.c
/*
* Copyright (c) 2004 Peter 'Luna' Runestig <peter@runestig.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modifi-
* cation, are permitted provided that the following conditions are met:
*
* o Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* o Redistributions in binary form must reproduce the above copyright no-
* tice, this list of conditions and the following disclaimer in the do-
* cumentation and/or other materials provided with the distribution.
*
* o The names of the contributors may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LI-
* ABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUEN-
* TIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEV-
* ER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABI-
* LITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
|