mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-08 03:14:21 +00:00
add copyright notices, license, attributions
This commit is contained in:
parent
d339b95895
commit
8d8cf553c3
@ -1,8 +1,31 @@
|
||||
/* TODO:
|
||||
* + prune all unused code
|
||||
* + profile
|
||||
/**
|
||||
* pyfec -- fast forward error correction library with Python interface
|
||||
*
|
||||
* Copyright (C) 2007 Allmydata, Inc.
|
||||
* Author: Zooko Wilcox-O'Hearn
|
||||
* mailto:zooko@zooko.com
|
||||
*
|
||||
* This file is part of pyfec.
|
||||
*
|
||||
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Much of this work is derived from the "fec" software by Luigi Rizzo, et
|
||||
* al., the copyright notice and licence terms of which are included below
|
||||
* for reference.
|
||||
* fec.c -- forward error correction based on Vandermonde matrices
|
||||
* 980624
|
||||
* (C) 1997-98 Luigi Rizzo (luigi@iet.unipi.it)
|
||||
|
@ -1,4 +1,32 @@
|
||||
/**
|
||||
* pyfec -- fast forward error correction library with Python interface
|
||||
*
|
||||
* Copyright (C) 2007 Allmydata, Inc.
|
||||
* Author: Zooko Wilcox-O'Hearn
|
||||
* mailto:zooko@zooko.com
|
||||
*
|
||||
* This file is part of pyfec.
|
||||
*
|
||||
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Much of this work is derived from the "fec" software by Luigi Rizzo, et
|
||||
* al., the copyright notice and licence terms of which are included below
|
||||
* for reference.
|
||||
*
|
||||
* fec.h -- forward error correction based on Vandermonde matrices
|
||||
* 980614
|
||||
* (C) 1997-98 Luigi Rizzo (luigi@iet.unipi.it)
|
||||
|
@ -1,7 +1,30 @@
|
||||
/**
|
||||
* copyright 2007 Allmydata Inc.
|
||||
* author: Zooko O'Whielacronx
|
||||
* based on fecmodule.c by the Mnet Project
|
||||
* pyfec -- fast forward error correction library with Python interface
|
||||
*
|
||||
* Copyright (C) 2007 Allmydata, Inc.
|
||||
* Author: Zooko Wilcox-O'Hearn
|
||||
* mailto:zooko@zooko.com
|
||||
*
|
||||
* This file is part of pyfec.
|
||||
*
|
||||
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
/**
|
||||
* based on fecmodule.c by the Mnet Project, especially Myers Carpenter and
|
||||
* Hauke Johannknecht
|
||||
*/
|
||||
|
||||
#include <Python.h>
|
||||
|
@ -1,3 +1,25 @@
|
||||
# pyfec -- fast forward error correction library with Python interface
|
||||
#
|
||||
# Copyright (C) 2007 Allmydata, Inc.
|
||||
# Author: Zooko Wilcox-O'Hearn
|
||||
# mailto:zooko@zooko.com
|
||||
#
|
||||
# This file is part of pyfec.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
import fec
|
||||
|
||||
import array
|
||||
|
@ -1,5 +1,27 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
# pyfec -- fast forward error correction library with Python interface
|
||||
#
|
||||
# Copyright (C) 2007 Allmydata, Inc.
|
||||
# Author: Zooko Wilcox-O'Hearn
|
||||
# mailto:zooko@zooko.com
|
||||
#
|
||||
# This file is part of pyfec.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
import random
|
||||
import sys
|
||||
|
||||
|
@ -1,5 +1,27 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
# pyfec -- fast forward error correction library with Python interface
|
||||
#
|
||||
# Copyright (C) 2007 Allmydata, Inc.
|
||||
# Author: Zooko Wilcox-O'Hearn
|
||||
# mailto:zooko@zooko.com
|
||||
#
|
||||
# This file is part of pyfec.
|
||||
#
|
||||
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
from distutils.core import Extension, setup
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user