From 8ee5dcf48eea002ac3f404da0bcf5d8eeee2ffe1 Mon Sep 17 00:00:00 2001 From: Julian Sparber Date: Sat, 28 Oct 2017 21:21:45 +0200 Subject: [PATCH] [license] add license header --- src/main.c | 18 ++++++++++++++++++ src/teleport-app.c | 18 ++++++++++++++++++ src/teleport-app.h | 18 ++++++++++++++++++ src/teleport-get.c | 18 ++++++++++++++++++ src/teleport-get.h | 18 ++++++++++++++++++ src/teleport-peer.c | 18 ++++++++++++++++++ src/teleport-peer.h | 18 ++++++++++++++++++ src/teleport-remote-device.c | 12 ++++++------ src/teleport-remote-device.h | 14 +++++++------- src/teleport-server.c | 18 ++++++++++++++++++ src/teleport-server.h | 18 ++++++++++++++++++ src/teleport-window.c | 18 ++++++++++++++++++ src/teleport-window.h | 18 ++++++++++++++++++ 13 files changed, 211 insertions(+), 13 deletions(-) diff --git a/src/main.c b/src/main.c index 4988bc2..729ac7f 100644 --- a/src/main.c +++ b/src/main.c @@ -1,3 +1,21 @@ +/* main.c + * + * Copyright 2017 Julian Sparber + * + * Teleport is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + #include #include "teleport-app.h" diff --git a/src/teleport-app.c b/src/teleport-app.c index 6f4a2ac..ff67e44 100644 --- a/src/teleport-app.c +++ b/src/teleport-app.c @@ -1,3 +1,21 @@ +/* teleport-app.c + * + * Copyright 2017 Julian Sparber + * + * Teleport is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + #include #include "teleport-app.h" diff --git a/src/teleport-app.h b/src/teleport-app.h index 96bd2de..45ddda3 100644 --- a/src/teleport-app.h +++ b/src/teleport-app.h @@ -1,3 +1,21 @@ +/* teleport-app.h + * + * Copyright 2017 Julian Sparber + * + * Teleport is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + #ifndef __TELEPORT_APP_H #define __TELEPORT_APP_H diff --git a/src/teleport-get.c b/src/teleport-get.c index 7f7e854..d8afdc8 100644 --- a/src/teleport-get.c +++ b/src/teleport-get.c @@ -1,3 +1,21 @@ +/* teleport-get.c + * + * Copyright 2017 Julian Sparber + * + * Teleport is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + #ifdef HAVE_CONFIG_H #include #endif diff --git a/src/teleport-get.h b/src/teleport-get.h index 3d42a2e..8e45a41 100644 --- a/src/teleport-get.h +++ b/src/teleport-get.h @@ -1,3 +1,21 @@ +/* teleport-get.h + * + * Copyright 2017 Julian Sparber + * + * Teleport is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + #ifndef __TELEPORT_GET_H #define __TELEPORT_GET_H diff --git a/src/teleport-peer.c b/src/teleport-peer.c index 4740e61..5c1cefc 100644 --- a/src/teleport-peer.c +++ b/src/teleport-peer.c @@ -1,3 +1,21 @@ +/* teleport-peer.c + * + * Copyright 2017 Julian Sparber + * + * Teleport is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + #include #include "teleport-peer.h" diff --git a/src/teleport-peer.h b/src/teleport-peer.h index 9a820ac..abb6ffd 100644 --- a/src/teleport-peer.h +++ b/src/teleport-peer.h @@ -1,3 +1,21 @@ +/* teleport-peer.h + * + * Copyright 2017 Julian Sparber + * + * Teleport is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + #ifndef __TELEPORT_PEER_H #define __TELEPORT_PEER_H diff --git a/src/teleport-remote-device.c b/src/teleport-remote-device.c index 8262a94..d0e8f1a 100644 --- a/src/teleport-remote-device.c +++ b/src/teleport-remote-device.c @@ -1,20 +1,20 @@ /* teleport-remote-device.c * - * Copyright (C) 2017 Julian Sparber + * Copyright 2017 Julian Sparber * - * 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 + * Teleport is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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. + * GNU Affero General Public License for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . - */ +*/ #include #include "teleport-remote-device.h" diff --git a/src/teleport-remote-device.h b/src/teleport-remote-device.h index 6522a56..c0d8d94 100644 --- a/src/teleport-remote-device.h +++ b/src/teleport-remote-device.h @@ -1,20 +1,20 @@ -/* teleport-remote-device.h +/* teleport-remote-device.c * - * Copyright (C) 2017 Julian Sparber + * Copyright 2017 Julian Sparber * - * 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 + * Teleport is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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. + * GNU Affero General Public License for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . - */ +*/ #ifndef TELEPORT_REMOTE_DEVICE_H #define TELEPORT_REMOTE_DEVICE_H diff --git a/src/teleport-server.c b/src/teleport-server.c index 5db5c67..6470f06 100644 --- a/src/teleport-server.c +++ b/src/teleport-server.c @@ -1,3 +1,21 @@ +/* teleport-server.c + * + * Copyright 2017 Julian Sparber + * + * Teleport is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + #include #include #include diff --git a/src/teleport-server.h b/src/teleport-server.h index e2be4b1..ba474d4 100644 --- a/src/teleport-server.h +++ b/src/teleport-server.h @@ -1,3 +1,21 @@ +/* teleport-server.h + * + * Copyright 2017 Julian Sparber + * + * Teleport is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + #ifndef __TELEPORT_SERVER_H #define __TELEPORT_SERVER_H diff --git a/src/teleport-window.c b/src/teleport-window.c index d979109..1781b29 100644 --- a/src/teleport-window.c +++ b/src/teleport-window.c @@ -1,3 +1,21 @@ +/* teleport-window.c + * + * Copyright 2017 Julian Sparber + * + * Teleport is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + #include #include "teleport-app.h" diff --git a/src/teleport-window.h b/src/teleport-window.h index 7917618..e346568 100644 --- a/src/teleport-window.h +++ b/src/teleport-window.h @@ -1,3 +1,21 @@ +/* teleport-window.h + * + * Copyright 2017 Julian Sparber + * + * Teleport is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . +*/ + #ifndef __TELEPORT_WINDOW_H #define __TELEPORT_WINDOW_H