From 386fbeba47dce57861724591a597014112d658ae Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 13 Nov 2021 15:53:50 +0100 Subject: added GPL --- src/cssh.c | 18 ++++++++++++++++++ src/port.c | 18 ++++++++++++++++++ src/port.h | 18 ++++++++++++++++++ src/progressbar.c | 18 ++++++++++++++++++ src/progressbar.h | 18 ++++++++++++++++++ 5 files changed, 90 insertions(+) diff --git a/src/cssh.c b/src/cssh.c index 8d63359..b5592a6 100644 --- a/src/cssh.c +++ b/src/cssh.c @@ -1,3 +1,21 @@ +/* + cssh - parallel secure shell + Copyright (C) 2015 Andreas Baumann + + 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 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, see . +*/ + #define _FILE_OFFSET_BITS 64 #include diff --git a/src/port.c b/src/port.c index d6b947e..a7fbe3e 100644 --- a/src/port.c +++ b/src/port.c @@ -1,3 +1,21 @@ +/* + cssh - parallel secure shell + Copyright (C) 2015 Andreas Baumann + + 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 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, see . +*/ + #include "port.h" #include diff --git a/src/port.h b/src/port.h index 49295b9..aae1ab6 100644 --- a/src/port.h +++ b/src/port.h @@ -1,3 +1,21 @@ +/* + cssh - parallel secure shell + Copyright (C) 2015 Andreas Baumann + + 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 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, see . +*/ + #ifndef _PORT_HEADER_INCLUDED #define _PORT_HEADER_INCLUDED diff --git a/src/progressbar.c b/src/progressbar.c index 59d924c..aeef98e 100644 --- a/src/progressbar.c +++ b/src/progressbar.c @@ -1,3 +1,21 @@ +/* + cssh - parallel secure shell + Copyright (C) 2015 Andreas Baumann + + 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 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, see . +*/ + #include "progressbar.h" #include diff --git a/src/progressbar.h b/src/progressbar.h index 53d8524..cd2fd96 100644 --- a/src/progressbar.h +++ b/src/progressbar.h @@ -1,3 +1,21 @@ +/* + cssh - parallel secure shell + Copyright (C) 2015 Andreas Baumann + + 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 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, see . +*/ + // rougly based on https://github.com/doches/progressbar // but changed in API, multi-line support and some interna // also simplified to exactly what we need for cssh -- cgit v1.2.3-54-g00ecf