Skip to content

Commit

Permalink
Added GPLv3 Text to everything
Browse files Browse the repository at this point in the history
  • Loading branch information
edman007 committed May 23, 2020
1 parent 59a96b1 commit 2572f52
Show file tree
Hide file tree
Showing 30 changed files with 1,287 additions and 0 deletions.
674 changes: 674 additions & 0 deletions COPYING

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
########################################################################
#
# This file is part of Chiton.
#
# Chiton 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 of the License, or
# (at your option) any later version.
#
# Chiton 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 Chiton. If not, see <https://www.gnu.org/licenses/>.
#
# Copyright 2020 Ed Martin <[email protected]>
#
########################################################################

ACLOCAL_AMFLAGS = -I m4
AM_CXXFLAGS = -std=gnu++11 -Wall
PRGM = chiton
Expand Down
22 changes: 22 additions & 0 deletions autogen.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@
#!/bin/bash

##########################################################################
#
# This file is part of Chiton.
#
# Chiton 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 of the License, or
# (at your option) any later version.
#
# Chiton 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 Chiton. If not, see <https://www.gnu.org/licenses/>.
#
# Copyright 2020 Ed Martin <[email protected]>
#
###########################################################################

libtoolize
aclocal
autoconf
Expand Down
22 changes: 22 additions & 0 deletions camera.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
/**************************************************************************
*
* This file is part of Chiton.
*
* Chiton 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 of the License, or
* (at your option) any later version.
*
* Chiton 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 Chiton. If not, see <https://www.gnu.org/licenses/>.
*
* Copyright 2020 Ed Martin <[email protected]>
*
**************************************************************************
*/

#include "camera.hpp"
#include "util.hpp"
#include "stream_writer.hpp"
Expand Down
21 changes: 21 additions & 0 deletions camera.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
#ifndef __CAMERA_HPP__
#define __CAMERA_HPP__
/**************************************************************************
*
* This file is part of Chiton.
*
* Chiton 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 of the License, or
* (at your option) any later version.
*
* Chiton 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 Chiton. If not, see <https://www.gnu.org/licenses/>.
*
* Copyright 2020 Ed Martin <[email protected]>
*
**************************************************************************
*/

#include "database.hpp"
#include "chiton_config.hpp"
Expand Down
21 changes: 21 additions & 0 deletions chiton_config.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
#ifndef __CHITON_CONFIG_HPP__
#define __CHITON_CONFIG_HPP__
/**************************************************************************
*
* This file is part of Chiton.
*
* Chiton 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 of the License, or
* (at your option) any later version.
*
* Chiton 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 Chiton. If not, see <https://www.gnu.org/licenses/>.
*
* Copyright 2020 Ed Martin <[email protected]>
*
**************************************************************************
*/
#include <string>
#include <map>

Expand Down
21 changes: 21 additions & 0 deletions chiton_ffmpeg.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/**************************************************************************
*
* This file is part of Chiton.
*
* Chiton 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 of the License, or
* (at your option) any later version.
*
* Chiton 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 Chiton. If not, see <https://www.gnu.org/licenses/>.
*
* Copyright 2020 Ed Martin <[email protected]>
*
**************************************************************************
*/
#include "chiton_ffmpeg.hpp"

void load_ffmpeg(void){
Expand Down
21 changes: 21 additions & 0 deletions chiton_ffmpeg.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
#ifndef __CHITON_FFMPEG_HPP__
#define __CHITON_FFMPEG_HPP__
/**************************************************************************
*
* This file is part of Chiton.
*
* Chiton 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 of the License, or
* (at your option) any later version.
*
* Chiton 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 Chiton. If not, see <https://www.gnu.org/licenses/>.
*
* Copyright 2020 Ed Martin <[email protected]>
*
**************************************************************************
*/

extern "C" {
#include <libavcodec/avcodec.h>
Expand Down
21 changes: 21 additions & 0 deletions config.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/**************************************************************************
*
* This file is part of Chiton.
*
* Chiton 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 of the License, or
* (at your option) any later version.
*
* Chiton 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 Chiton. If not, see <https://www.gnu.org/licenses/>.
*
* Copyright 2020 Ed Martin <[email protected]>
*
**************************************************************************
*/
#include "chiton_config.hpp"
#include "util.hpp"
#include <fstream>
Expand Down
23 changes: 23 additions & 0 deletions config/chiton.cfg.template
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
#######################################################################
#
# This file is part of Chiton.
#
# Chiton 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 of the License, or
# (at your option) any later version.
#
# Chiton 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 Chiton. If not, see <https://www.gnu.org/licenses/>.
#
# Copyright 2020 Ed Martin <[email protected]>
#
########################################################################



# database Settings
db-host = localhost
db-user = chiton
Expand Down
21 changes: 21 additions & 0 deletions config_parser.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/**************************************************************************
*
* This file is part of Chiton.
*
* Chiton 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 of the License, or
* (at your option) any later version.
*
* Chiton 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 Chiton. If not, see <https://www.gnu.org/licenses/>.
*
* Copyright 2020 Ed Martin <[email protected]>
*
**************************************************************************
*/
#include "config_parser.hpp"
#include "util.hpp"

Expand Down
21 changes: 21 additions & 0 deletions config_parser.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
#ifndef __CONFIG_PARSER_HPP__
#define __CONFIG_PARSER_HPP__
/**************************************************************************
*
* This file is part of Chiton.
*
* Chiton 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 of the License, or
* (at your option) any later version.
*
* Chiton 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 Chiton. If not, see <https://www.gnu.org/licenses/>.
*
* Copyright 2020 Ed Martin <[email protected]>
*
**************************************************************************
*/
#include "chiton_config.hpp"
#include <fstream>
#include <sstream>
Expand Down
21 changes: 21 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
##########################################################################
#
# This file is part of Chiton.
#
# Chiton 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 of the License, or
# (at your option) any later version.
#
# Chiton 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 Chiton. If not, see <https://www.gnu.org/licenses/>.
#
# Copyright 2020 Ed Martin <[email protected]>
#
##########################################################################

define([BUILDVER], [git])
AC_INIT([Chiton Security], BUILDVER, [[email protected]], [chiton], [http://edman007.com/])
AC_CONFIG_SRCDIR([main.cpp])
Expand Down
21 changes: 21 additions & 0 deletions database.cpp
Original file line number Diff line number Diff line change
@@ -1 +1,22 @@
/**************************************************************************
*
* This file is part of Chiton.
*
* Chiton 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 of the License, or
* (at your option) any later version.
*
* Chiton 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 Chiton. If not, see <https://www.gnu.org/licenses/>.
*
* Copyright 2020 Ed Martin <[email protected]>
*
**************************************************************************
*/
#include "database.hpp"
21 changes: 21 additions & 0 deletions database.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
#ifndef __DATABASE_HPP__
#define __DATABASE_HPP__
/**************************************************************************
*
* This file is part of Chiton.
*
* Chiton 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 of the License, or
* (at your option) any later version.
*
* Chiton 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 Chiton. If not, see <https://www.gnu.org/licenses/>.
*
* Copyright 2020 Ed Martin <[email protected]>
*
**************************************************************************
*/
#include <string>

#include "database_result.hpp"
Expand Down
21 changes: 21 additions & 0 deletions database_result.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
#ifndef __DATABASE_RESULT_HPP__
#define __DATABASE_RESULT_HPP__
/**************************************************************************
*
* This file is part of Chiton.
*
* Chiton 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 of the License, or
* (at your option) any later version.
*
* Chiton 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 Chiton. If not, see <https://www.gnu.org/licenses/>.
*
* Copyright 2020 Ed Martin <[email protected]>
*
**************************************************************************
*/
#include <map>
#include <string>

Expand Down
Loading

0 comments on commit 2572f52

Please sign in to comment.