Skip to content

Commit

Permalink
lick incense
Browse files Browse the repository at this point in the history
  • Loading branch information
eddietwo committed Oct 4, 2000
1 parent 1255b47 commit bb2036a
Show file tree
Hide file tree
Showing 280 changed files with 3,330 additions and 1,737 deletions.
25 changes: 0 additions & 25 deletions COPYRIGHT

This file was deleted.

1 change: 0 additions & 1 deletion DISTFILES
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
AUTHORS
COPYRIGHT
DISTFILES
FAQ
INSTALL
Expand Down
372 changes: 32 additions & 340 deletions LICENSE

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ more up-to-date configurations.
COPYRIGHT AND LICENSE
=====================

We are distributing Click under the GNU Public License. See the files
`COPYRIGHT', `LICENSE' and `AUTHORS' for details.
We are distributing Click under a version of the "MIT License", which
is a BSD-like license. See the files `LICENSE' and `AUTHORS' for details.

BUGS, QUESTIONS, ETC.
=====================
Expand Down
17 changes: 12 additions & 5 deletions apps/ClickController/ClickController.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@
* ClickController.java -- main ClickController program
* Eddie Kohler, Douglas S. J. De Couto
*
* Copyright (c) 2000 Massachusetts Institute of Technology.
* Copyright (c) 2000 Massachusetts Institute of Technology
*
* This software is being provided by the copyright holders under the GNU
* General Public License, either version 2 or, at your discretion, any later
* version. For more information, see the `COPYRIGHT' file in the source
* distribution.
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* Further elaboration of this license, including a DISCLAIMER OF ANY
* WARRANTY, EXPRESS OR IMPLIED, is provided in the LICENSE file, which is
* also accessible at http://www.pdos.lcs.mit.edu/click/license.html
*/

import java.awt.*;
Expand Down
15 changes: 11 additions & 4 deletions apps/ClickController/ControlSocket.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,17 @@
*
* Copyright (c) 2000 Massachusetts Institute of Technology.
*
* This software is being provided by the copyright holders under the GNU
* General Public License, either version 2 or, at your discretion, any later
* version. For more information, see the `COPYRIGHT' file in the source
* distribution.
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* Further elaboration of this license, including a DISCLAIMER OF ANY
* WARRANTY, EXPRESS OR IMPLIED, is provided in the LICENSE file, which is
* also accessible at http://www.pdos.lcs.mit.edu/click/license.html
*/

import java.net.*;
Expand Down
15 changes: 11 additions & 4 deletions apps/ClickController/NewConnectionDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,17 @@
*
* Copyright (c) 2000 Massachusetts Institute of Technology.
*
* This software is being provided by the copyright holders under the GNU
* General Public License, either version 2 or, at your discretion, any later
* version. For more information, see the `COPYRIGHT' file in the source
* distribution.
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* Further elaboration of this license, including a DISCLAIMER OF ANY
* WARRANTY, EXPRESS OR IMPLIED, is provided in the LICENSE file, which is
* also accessible at http://www.pdos.lcs.mit.edu/click/license.html
*/

import java.awt.*;
Expand Down
15 changes: 11 additions & 4 deletions apps/ClickController/RouterTreeModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,17 @@
*
* Copyright (c) 2000 Massachusetts Institute of Technology.
*
* This software is being provided by the copyright holders under the GNU
* General Public License, either version 2 or, at your discretion, any later
* version. For more information, see the `COPYRIGHT' file in the source
* distribution.
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* Further elaboration of this license, including a DISCLAIMER OF ANY
* WARRANTY, EXPRESS OR IMPLIED, is provided in the LICENSE file, which is
* also accessible at http://www.pdos.lcs.mit.edu/click/license.html
*/

import javax.swing.*;
Expand Down
15 changes: 11 additions & 4 deletions apps/ClickController/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,17 @@
*
* Copyright (c) 2000 Massachusetts Institute of Technology.
*
* This software is being provided by the copyright holders under the GNU
* General Public License, either version 2 or, at your discretion, any later
* version. For more information, see the `COPYRIGHT' file in the source
* distribution.
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* Further elaboration of this license, including a DISCLAIMER OF ANY
* WARRANTY, EXPRESS OR IMPLIED, is provided in the LICENSE file, which is
* also accessible at http://www.pdos.lcs.mit.edu/click/license.html
*/

import java.util.*;
Expand Down
17 changes: 17 additions & 0 deletions click-compile.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
#!/bin/sh

# click-compile.in -- script compiles Click elements
# Eddie Kohler
#
# Copyright (c) 1999 Massachusetts Institute of Technology
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, subject to the following
# conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# Further elaboration of this license, including a DISCLAIMER OF ANY
# WARRANTY, EXPRESS OR IMPLIED, is provided in the LICENSE file, which is
# also accessible at http://www.pdos.lcs.mit.edu/click/license.html

prefix=@prefix@
exec_prefix=@exec_prefix@
includedir=@includedir@/click
Expand Down
15 changes: 11 additions & 4 deletions conf/make-ip-conf.pl
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,17 @@
#
# Copyright (c) 1999-2000 Massachusetts Institute of Technology.
#
# This software is being provided by the copyright holders under the GNU
# General Public License, either version 2 or, at your discretion, any later
# version. For more information, see the `COPYRIGHT' file in the source
# distribution.
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, subject to the following
# conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# Further elaboration of this license, including a DISCLAIMER OF ANY
# WARRANTY, EXPRESS OR IMPLIED, is provided in the LICENSE file, which is
# also accessible at http://www.pdos.lcs.mit.edu/click/license.html

# Make a Click IP router configuration.
# The output is only useful with the Linux kernel module.
Expand Down
15 changes: 11 additions & 4 deletions doc/element2man.pl
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,17 @@
#
# Copyright (c) 1999 Massachusetts Institute of Technology.
#
# This software is being provided by the copyright holders under the GNU
# General Public License, either version 2 or, at your discretion, any later
# version. For more information, see the `COPYRIGHT' file in the source
# distribution.
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, subject to the following
# conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# Further elaboration of this license, including a DISCLAIMER OF ANY
# WARRANTY, EXPRESS OR IMPLIED, is provided in the LICENSE file, which is
# also accessible at http://www.pdos.lcs.mit.edu/click/license.html

my(%section_break) =
( 'head1' => 1, 'c' => 1, 's' => 1, 'io' => 1, 'processing' => 1,
Expand Down
17 changes: 12 additions & 5 deletions elements/app/ftpportmapper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@
* ftpportmapper.{cc,hh} -- IPMapper for FTP PORT commands
* Eddie Kohler
*
* Copyright (c) 2000 Massachusetts Institute of Technology.
* Copyright (c) 2000 Massachusetts Institute of Technology
*
* This software is being provided by the copyright holders under the GNU
* General Public License, either version 2 or, at your discretion, any later
* version. For more information, see the `COPYRIGHT' file in the source
* distribution.
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* Further elaboration of this license, including a DISCLAIMER OF ANY
* WARRANTY, EXPRESS OR IMPLIED, is provided in the LICENSE file, which is
* also accessible at http://www.pdos.lcs.mit.edu/click/license.html
*/

#ifdef HAVE_CONFIG_H
Expand Down
17 changes: 12 additions & 5 deletions elements/aqm/red.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@
* red.{cc,hh} -- element implements Random Early Detection dropping policy
* Eddie Kohler
*
* Copyright (c) 1999-2000 Massachusetts Institute of Technology.
* Copyright (c) 1999-2000 Massachusetts Institute of Technology
*
* This software is being provided by the copyright holders under the GNU
* General Public License, either version 2 or, at your discretion, any later
* version. For more information, see the `COPYRIGHT' file in the source
* distribution.
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* Further elaboration of this license, including a DISCLAIMER OF ANY
* WARRANTY, EXPRESS OR IMPLIED, is provided in the LICENSE file, which is
* also accessible at http://www.pdos.lcs.mit.edu/click/license.html
*/

#ifdef HAVE_CONFIG_H
Expand Down
17 changes: 12 additions & 5 deletions elements/ethernet/arpfaker.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@
* arpfaker.{cc,hh} -- ARP response faker element
* Robert Morris
*
* Copyright (c) 1999-2000 Massachusetts Institute of Technology.
* Copyright (c) 1999-2000 Massachusetts Institute of Technology
*
* This software is being provided by the copyright holders under the GNU
* General Public License, either version 2 or, at your discretion, any later
* version. For more information, see the `COPYRIGHT' file in the source
* distribution.
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* Further elaboration of this license, including a DISCLAIMER OF ANY
* WARRANTY, EXPRESS OR IMPLIED, is provided in the LICENSE file, which is
* also accessible at http://www.pdos.lcs.mit.edu/click/license.html
*/

#ifdef HAVE_CONFIG_H
Expand Down
17 changes: 12 additions & 5 deletions elements/ethernet/arpquerier.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@
* arpquerier.{cc,hh} -- ARP resolver element
* Robert Morris, Eddie Kohler
*
* Copyright (c) 1999-2000 Massachusetts Institute of Technology.
* Copyright (c) 1999-2000 Massachusetts Institute of Technology
*
* This software is being provided by the copyright holders under the GNU
* General Public License, either version 2 or, at your discretion, any later
* version. For more information, see the `COPYRIGHT' file in the source
* distribution.
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* Further elaboration of this license, including a DISCLAIMER OF ANY
* WARRANTY, EXPRESS OR IMPLIED, is provided in the LICENSE file, which is
* also accessible at http://www.pdos.lcs.mit.edu/click/license.html
*/

#ifdef HAVE_CONFIG_H
Expand Down
17 changes: 12 additions & 5 deletions elements/ethernet/arpresponder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@
* arpresponder.{cc,hh} -- element that responds to ARP queries
* Robert Morris
*
* Copyright (c) 1999-2000 Massachusetts Institute of Technology.
* Copyright (c) 1999-2000 Massachusetts Institute of Technology
*
* This software is being provided by the copyright holders under the GNU
* General Public License, either version 2 or, at your discretion, any later
* version. For more information, see the `COPYRIGHT' file in the source
* distribution.
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* Further elaboration of this license, including a DISCLAIMER OF ANY
* WARRANTY, EXPRESS OR IMPLIED, is provided in the LICENSE file, which is
* also accessible at http://www.pdos.lcs.mit.edu/click/license.html
*/

#ifdef HAVE_CONFIG_H
Expand Down
17 changes: 12 additions & 5 deletions elements/ethernet/ethermirror.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@
* ethermirror.{cc,hh} -- rewrites Ethernet packet a->b to b->a
* Eddie Kohler
*
* Copyright (c) 2000 Massachusetts Institute of Technology.
* Copyright (c) 2000 Massachusetts Institute of Technology
*
* This software is being provided by the copyright holders under the GNU
* General Public License, either version 2 or, at your discretion, any later
* version. For more information, see the `COPYRIGHT' file in the source
* distribution.
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* Further elaboration of this license, including a DISCLAIMER OF ANY
* WARRANTY, EXPRESS OR IMPLIED, is provided in the LICENSE file, which is
* also accessible at http://www.pdos.lcs.mit.edu/click/license.html
*/

#ifdef HAVE_CONFIG_H
Expand Down
17 changes: 12 additions & 5 deletions elements/ethernet/hostetherfilter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@
* hostetherfilter.{cc,hh} -- Discard packets not for this host.
* Robert Morris
*
* Copyright (c) 1999-2000 Massachusetts Institute of Technology.
* Copyright (c) 1999-2000 Massachusetts Institute of Technology
*
* This software is being provided by the copyright holders under the GNU
* General Public License, either version 2 or, at your discretion, any later
* version. For more information, see the `COPYRIGHT' file in the source
* distribution.
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* Further elaboration of this license, including a DISCLAIMER OF ANY
* WARRANTY, EXPRESS OR IMPLIED, is provided in the LICENSE file, which is
* also accessible at http://www.pdos.lcs.mit.edu/click/license.html
*/

#ifdef HAVE_CONFIG_H
Expand Down
Loading

0 comments on commit bb2036a

Please sign in to comment.