Skip to content

Commit

Permalink
Clear out bolierplate comments that make code harder to read
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicgs committed Dec 3, 2014
1 parent 2918404 commit 15807c2
Show file tree
Hide file tree
Showing 98 changed files with 62 additions and 2,030 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Expand Up @@ -2,3 +2,4 @@ Authors:
Dominic Spill <dominicgs@gmail.com>
Adam Stasiak <palesius@gmail.com>
<atsumi@aizulab.com>
Mike Kershaw / dragorn <dragorn@kismetwireless.net>
6 changes: 4 additions & 2 deletions README.md
Expand Up @@ -62,8 +62,10 @@ ToDo

License
-------
All files should have a license displayed at the start of the file. Any code
that we have written is released under the GPL v3 license.
Unless explicitly stated otherwise, all code in this repository is released
under the GPL v2 license, a copy of which can be found in the LICENSE file. All
files that are released under a different license contain a copy of that license
in the file.

FAQ
---
Expand Down
17 changes: 0 additions & 17 deletions src/CMakeLists.txt
@@ -1,23 +1,6 @@
#
# Copyright 2014 Dominic Spill
#
# This file is part of USBProxy.
#
# 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
# along with this program; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
#
#top level cmake project for USBProxy lib, plugins, and commandline tool

cmake_minimum_required(VERSION 2.8)
Expand Down
18 changes: 0 additions & 18 deletions src/Plugins/CMakeLists.txt
@@ -1,24 +1,6 @@
#
# Copyright 2014 Dominic Spill
#
# This file is part of USBProxy.
#
# 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
# along with this program; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
#
# Based heavily upon the hackrf/ubertooth cmake setup.

project(usbproxy_plugins C)
set(PACKAGE usbproxy_plugins)
Expand Down
18 changes: 0 additions & 18 deletions src/Plugins/Devices/CMakeLists.txt
@@ -1,24 +1,6 @@
#
# Copyright 2014 Dominic Spill
#
# This file is part of USBProxy.
#
# 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
# along with this program; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
#
# Based upon the hackrf/ubertooth cmake setup.

project(usbproxy_devices C)
set(PACKAGE usbproxy_devices)
Expand Down
18 changes: 0 additions & 18 deletions src/Plugins/Devices/DeviceProxy_LibUSB.cpp
@@ -1,23 +1,5 @@
/*
* Copyright 2013 Dominic Spill
* Copyright 2013 Adam Stasiak
*
* This file is part of USBProxy.
*
* 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 3, 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/

#include <stdlib.h>
Expand Down
18 changes: 0 additions & 18 deletions src/Plugins/Devices/DeviceProxy_LibUSB.h
@@ -1,23 +1,5 @@
/*
* Copyright 2013 Dominic Spill
* Copyright 2013 Adam Stasiak
*
* This file is part of USBProxy.
*
* 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 3, 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/

#ifndef USBPROXY_DEVICEPROXY_LIBUSB_H
Expand Down
20 changes: 0 additions & 20 deletions src/Plugins/Devices/DeviceProxy_Loopback.cpp
@@ -1,25 +1,5 @@
/*
* Copyright 2013 Dominic Spill
* Copyright 2013 Adam Stasiak
*
* Based on libusb-gadget - Copyright 2009 Daiki Ueno <ueno@unixuser.org>
*
* This file is part of USBProxy.
*
* 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 3, 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/

#include "DeviceProxy_Loopback.h"
Expand Down
18 changes: 0 additions & 18 deletions src/Plugins/Devices/DeviceProxy_Loopback.h
@@ -1,23 +1,5 @@
/*
* Copyright 2013 Dominic Spill
* Copyright 2013 Adam Stasiak
*
* This file is part of USBProxy.
*
* 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 3, 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/

#ifndef USBPROXY_DEVICEPROXY_LOOPBACK_H
Expand Down
23 changes: 1 addition & 22 deletions src/Plugins/Devices/DeviceProxy_Null.h
@@ -1,28 +1,7 @@
/*
* Copyright 2013 Dominic Spill
* Copyright 2013 Adam Stasiak
*
* This file is part of USBProxy.
*
* 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 3, 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*
* DeviceProxyNull.h
*
* Created on: Nov 15, 2013
*/

#ifndef USBPROXY_DEVICEPROXYNULL_H
#define USBPROXY_DEVICEPROXYNULL_H

Expand Down
20 changes: 0 additions & 20 deletions src/Plugins/Devices/DeviceProxy_TCP.cpp
@@ -1,25 +1,5 @@
/*
* Copyright 2013 Dominic Spill
* Copyright 2013 Adam Stasiak
*
* Based on libusb-gadget - Copyright 2009 Daiki Ueno <ueno@unixuser.org>
*
* This file is part of USBProxy.
*
* 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 3, 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/

#include <stdio.h>
Expand Down
22 changes: 0 additions & 22 deletions src/Plugins/Devices/DeviceProxy_TCP.h
@@ -1,27 +1,5 @@
/*
* Copyright 2013 Dominic Spill
* Copyright 2013 Adam Stasiak
*
* This file is part of USBProxy.
*
* 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 3, 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*
* DeviceProxy_TCP.h
*
* Created on: Dec 12, 2013
*/

#ifndef USBPROXY_DEVICEPROXY_TCP_H
Expand Down
18 changes: 0 additions & 18 deletions src/Plugins/Devices/DeviceProxy_dot11.cpp
@@ -1,23 +1,5 @@
/*
* Copyright 2014 Dominic Spill
* Copyright 2014 Mike Kershaw / dragorn
*
* This file is part of USBProxy.
*
* 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 3, 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/

#include "DeviceProxy_dot11.h"
Expand Down
18 changes: 0 additions & 18 deletions src/Plugins/Devices/DeviceProxy_dot11.h
@@ -1,23 +1,5 @@
/*
* Copyright 2014 Dominic Spill
* Copyright 2014 Mike Kershaw / dragorn
*
* This file is part of USBProxy.
*
* 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 3, 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/

#ifndef USBPROXY_DEVICEPROXY_DOT11_H
Expand Down
18 changes: 0 additions & 18 deletions src/Plugins/Devices/Dot11_Interface.h
@@ -1,23 +1,5 @@
/*
* Copyright 2014 Dominic Spill
* Copyright 2014 Mike Kershaw / dragorn
*
* This file is part of USBProxy.
*
* 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 3, 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/

#ifndef USBPROXY_DOT11_INTERFACE_H
Expand Down
18 changes: 0 additions & 18 deletions src/Plugins/Filters/CMakeLists.txt
@@ -1,24 +1,6 @@
#
# Copyright 2014 Dominic Spill
#
# This file is part of USBProxy.
#
# 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
# along with this program; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
#
# Based upon the hackrf/ubertooth cmake setup.

project(usbproxy_filters C)
set(PACKAGE usbproxy_filters)
Expand Down

0 comments on commit 15807c2

Please sign in to comment.