From 9b64bb87e0566d401654fd075543610568d83dc4 Mon Sep 17 00:00:00 2001 From: Andrew Bettison Date: Wed, 4 Dec 2013 16:56:55 +1030 Subject: [PATCH] Uniform copyright notices Added some missing copyright/license block comments --- check-in-out-return.c | 2 +- cli.c | 2 +- cli.h | 2 +- commandline.c | 2 +- config_test.c | 2 +- crypto.c | 2 +- crypto.h | 2 +- dataformats.c | 4 ++-- dataformats.h | 18 ++++++++++++++++++ directory_client.c | 2 +- directory_service.c | 2 +- fakeradio.c | 2 +- fdqueue.h | 2 +- fifo.c | 2 +- fifo.h | 2 +- golay.c | 2 +- golay.h | 2 +- http_server.c | 2 +- http_server.h | 2 +- keyring.c | 2 +- keyring.h | 2 +- main.c | 4 ++-- mdp_client.c | 3 ++- mdp_client.h | 2 +- mdp_net.c | 2 +- meshms.c | 2 +- monitor-client.c | 3 ++- monitor-client.h | 5 +++-- monitor.c | 3 ++- nonce.c | 3 ++- overlay_address.c | 5 +++-- overlay_address.h | 32 ++++++++++++++++---------------- overlay_link.c | 2 +- overlay_mdp.c | 2 +- overlay_mdp_services.c | 3 ++- overlay_olsr.c | 2 +- overlay_packet.h | 2 +- overlay_packetradio.c | 2 +- overlay_queue.c | 2 +- pa_phone.c | 2 +- performance_timing.c | 2 +- radio_link.h | 18 ++++++++++++++++++ rhizome.c | 2 +- rhizome_database.c | 2 +- rhizome_fetch.c | 2 +- rhizome_http.c | 2 +- rhizome_store.c | 2 +- rhizome_sync.c | 2 +- route_link.c | 2 +- serval.h | 2 +- socket.h | 19 +++++++++++++++++++ tfw_createfile.c | 2 +- version_servald.c | 2 +- vomp_console.c | 2 +- 54 files changed, 132 insertions(+), 70 deletions(-) diff --git a/check-in-out-return.c b/check-in-out-return.c index 6d61373a..eaf57376 100644 --- a/check-in-out-return.c +++ b/check-in-out-return.c @@ -1,6 +1,6 @@ /* Serval DNA source code checker -Copyright 2013 Serval Project, Inc. +Copyright 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/cli.c b/cli.c index 36bdead5..87b0551d 100644 --- a/cli.c +++ b/cli.c @@ -1,6 +1,6 @@ /* Serval DNA command-line functions -Copyright (C) 2010-2013 Serval Project, Inc. +Copyright (C) 2010-2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/cli.h b/cli.h index 4a340f22..0c39371b 100644 --- a/cli.h +++ b/cli.h @@ -1,6 +1,6 @@ /* Serval command line parsing and processing. - Copyright (C) 2012,2013 Serval Project, Inc. + Copyright (C) 2012,2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/commandline.c b/commandline.c index 7e0fd4f9..38fdfd44 100644 --- a/commandline.c +++ b/commandline.c @@ -1,6 +1,6 @@ /* Serval DNA command-line functions -Copyright (C) 2010-2013 Serval Project, Inc. +Copyright (C) 2010-2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/config_test.c b/config_test.c index 42b1c159..87f8ec66 100644 --- a/config_test.c +++ b/config_test.c @@ -1,6 +1,6 @@ /* Serval DNA configuration stand-alone configuration check utility -Copyright 2013 Serval Project, Inc. +Copyright 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/crypto.c b/crypto.c index 9072d041..e2e9fe7b 100644 --- a/crypto.c +++ b/crypto.c @@ -1,6 +1,6 @@ /* Serval DNA internal cryptographic operations -Copyright 2013 Serval Project, Inc. +Copyright 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/crypto.h b/crypto.h index 38f51494..06d7c817 100644 --- a/crypto.h +++ b/crypto.h @@ -1,6 +1,6 @@ /* Serval DNA internal cryptographic operations -Copyright 2013 Serval Project, Inc. +Copyright 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/dataformats.c b/dataformats.c index 5324506d..28238ef7 100644 --- a/dataformats.c +++ b/dataformats.c @@ -1,6 +1,6 @@ /* -Serval Distributed Numbering Architecture (DNA) -Copyright (C) 2010 Paul Gardner-Stephen +Serval DNA data interchange formats +Copyright (C) 2010-2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/dataformats.h b/dataformats.h index a9abc661..ee7b4d73 100644 --- a/dataformats.h +++ b/dataformats.h @@ -1,3 +1,21 @@ +/* +Serval DNA data interchange formats +Copyright (C) 2012-2013 Serval Project Inc. + +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 +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, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +*/ #ifndef __SERVALD_DATA_FORMATS_H #define __SERVALD_DATA_FORMATS_H diff --git a/directory_client.c b/directory_client.c index d296b433..5ac3ac19 100644 --- a/directory_client.c +++ b/directory_client.c @@ -1,6 +1,6 @@ /* Serval DNA directory service client -Copyright (C) 2013 Serval Project, Inc. +Copyright (C) 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/directory_service.c b/directory_service.c index b8f1608c..d89638a4 100644 --- a/directory_service.c +++ b/directory_service.c @@ -1,6 +1,6 @@ /* Serval DNA directory service -Copyright (C) 2013 Serval Project, Inc. +Copyright (C) 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/fakeradio.c b/fakeradio.c index b0b14994..c0cb6a81 100644 --- a/fakeradio.c +++ b/fakeradio.c @@ -1,6 +1,6 @@ /* Serval DNA radio serial modem simulator -Copyright (C) 2013 Serval Project, Inc. +Copyright (C) 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/fdqueue.h b/fdqueue.h index 39d1b37d..6c0ed1a9 100644 --- a/fdqueue.h +++ b/fdqueue.h @@ -1,6 +1,6 @@ /* Serval DNA file descriptor queue -Copyright (C) 2012-2013 Serval Project, Inc. +Copyright (C) 2012-2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/fifo.c b/fifo.c index 2bbc4a57..8a8684c8 100644 --- a/fifo.c +++ b/fifo.c @@ -1,6 +1,6 @@ /* Serval DNA FIFO primitives -Copyright (C) 2012 Serval Project, Inc. +Copyright (C) 2012 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/fifo.h b/fifo.h index 36b81142..40d63e88 100644 --- a/fifo.h +++ b/fifo.h @@ -1,6 +1,6 @@ /* Serval DNA FIFO primitives -Copyright (C) 2012 Serval Project, Inc. +Copyright (C) 2012 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/golay.c b/golay.c index b0547a93..9599a497 100644 --- a/golay.c +++ b/golay.c @@ -1,6 +1,6 @@ /* Serval DNA Golay coding -Copyright (C) 2013 Serval Project, Inc. +Copyright (C) 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/golay.h b/golay.h index e1d0c3e2..d0219940 100644 --- a/golay.h +++ b/golay.h @@ -1,6 +1,6 @@ /* Serval DNA Golay coding -Copyright (C) 2013 Serval Project, Inc. +Copyright (C) 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/http_server.c b/http_server.c index 814f0919..1a2193a2 100644 --- a/http_server.c +++ b/http_server.c @@ -1,6 +1,6 @@ /* Serval DNA - HTTP Server -Copyright (C) 2013 Serval Project, Inc. +Copyright (C) 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/http_server.h b/http_server.h index baab6e75..cb012e54 100644 --- a/http_server.h +++ b/http_server.h @@ -1,6 +1,6 @@ /* Serval DNA - HTTP Server API -Copyright (C) 2013 Serval Project, Inc. +Copyright (C) 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/keyring.c b/keyring.c index 05e2b58f..1593d315 100644 --- a/keyring.c +++ b/keyring.c @@ -1,6 +1,6 @@ /* Serval DNA keyring -Copyright (C) 2013 Serval Project, Inc. +Copyright (C) 2013 Serval Project Inc. Copyright (C) 2010-2012 Paul Gardner-Stephen This program is free software; you can redistribute it and/or diff --git a/keyring.h b/keyring.h index 905cd1dd..78e2d8de 100644 --- a/keyring.h +++ b/keyring.h @@ -1,6 +1,6 @@ /* Serval DNA keyring -Copyright (C) 2013 Serval Project, Inc. +Copyright (C) 2013 Serval Project Inc. Copyright (C) 2010-2012 Paul Gardner-Stephen This program is free software; you can redistribute it and/or diff --git a/main.c b/main.c index 38279a38..c0437063 100644 --- a/main.c +++ b/main.c @@ -1,6 +1,6 @@ /* -Serval daemon -Copyright (C) 2012 The Serval Project +Serval DNA daemon +Copyright (C) 2012 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/mdp_client.c b/mdp_client.c index 0c4b6975..2cb7e0e1 100644 --- a/mdp_client.c +++ b/mdp_client.c @@ -1,5 +1,6 @@ /* - Copyright (C) 2010-2012 Paul Gardner-Stephen, Serval Project. + Copyright (C) 2010-2012 Paul Gardner-Stephen + Copyright (C) 2010-2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/mdp_client.h b/mdp_client.h index 47fbd33c..bf45c41a 100644 --- a/mdp_client.h +++ b/mdp_client.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Serval Project. + Copyright (C) 2012-2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/mdp_net.c b/mdp_net.c index 8d572716..fa3e5131 100644 --- a/mdp_net.c +++ b/mdp_net.c @@ -1,5 +1,5 @@ /* -Copyright (C) 2013 Serval Project, Inc. +Copyright (C) 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/meshms.c b/meshms.c index 9621caee..9c43f8b4 100644 --- a/meshms.c +++ b/meshms.c @@ -1,6 +1,6 @@ /* Serval DNA MeshMS -Copyright (C) 2013 Serval Project, Inc. +Copyright (C) 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/monitor-client.c b/monitor-client.c index 35ef276e..ad3afcb4 100644 --- a/monitor-client.c +++ b/monitor-client.c @@ -1,5 +1,6 @@ /* -Copyright (C) 2012 Paul Gardner-Stephen, Serval Project. +Copyright (C) 2012 Paul Gardner-Stephen +Copyright (C) 2012 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/monitor-client.h b/monitor-client.h index 810058a1..235ea5af 100644 --- a/monitor-client.h +++ b/monitor-client.h @@ -1,5 +1,6 @@ /* -Copyright (C) 2012 Paul Gardner-Stephen, Serval Project. +Copyright (C) 2012 Paul Gardner-Stephen +Copyright (C) 2012 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License @@ -34,4 +35,4 @@ int monitor_client_read(int fd, struct monitor_state *res, struct monitor_comman int monitor_client_close(int fd, struct monitor_state *res); int monitor_socket_name(struct sockaddr_un *name); -#endif \ No newline at end of file +#endif diff --git a/monitor.c b/monitor.c index e28016d9..af2f2bf7 100644 --- a/monitor.c +++ b/monitor.c @@ -1,5 +1,6 @@ /* -Copyright (C) 2010-2012 Paul Gardner-Stephen, Serval Project. +Copyright (C) 2010-2012 Paul Gardner-Stephen +Copyright (C) 2010-2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/nonce.c b/nonce.c index 06ab7bb2..00d2bab8 100644 --- a/nonce.c +++ b/nonce.c @@ -1,5 +1,6 @@ /* -Copyright (C) 2013 Paul Gardner-Stephen, Serval Project. +Copyright (C) 2013 Paul Gardner-Stephen +Copyright (C) 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/overlay_address.c b/overlay_address.c index 399e147f..c8463764 100644 --- a/overlay_address.c +++ b/overlay_address.c @@ -1,6 +1,7 @@ /* -Serval Distributed Numbering Architecture (DNA) -Copyright (C) 2010 Paul Gardner-Stephen +Serval DNA MDP addressing +Copyright (C) 2012-2013 Serval Project Inc. +Copyright (C) 2012 Paul Gardner-Stephen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/overlay_address.h b/overlay_address.h index 1de7801b..0cff35b6 100644 --- a/overlay_address.h +++ b/overlay_address.h @@ -1,20 +1,20 @@ /* - Serval Daemon - Copyright (C) 2012 Serval Project Inc. - - 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 - 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, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +Serval DNA MDP addressing +Copyright (C) 2012-2013 Serval Project Inc. + +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 +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, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef _SERVALD_OVERLAY_ADDRESS_H diff --git a/overlay_link.c b/overlay_link.c index f6b46b74..a622a03c 100644 --- a/overlay_link.c +++ b/overlay_link.c @@ -1,6 +1,6 @@ /* Serval DNA MDP overlay network link tracking -Copyright (C) 2012-2013 Serval Project, Inc. +Copyright (C) 2012-2013 Serval Project Inc. Copyright (C) 2010-2012 Paul Gardner-Stephen This program is free software; you can redistribute it and/or diff --git a/overlay_mdp.c b/overlay_mdp.c index 228a315c..95b9987b 100644 --- a/overlay_mdp.c +++ b/overlay_mdp.c @@ -1,6 +1,6 @@ /* Serval DNA MDP overlay network -Copyright (C) 2012-2013 Serval Project, Inc. +Copyright (C) 2012-2013 Serval Project Inc. Copyright (C) 2010-2012 Paul Gardner-Stephen This program is free software; you can redistribute it and/or diff --git a/overlay_mdp_services.c b/overlay_mdp_services.c index 2abc30d4..a9088619 100644 --- a/overlay_mdp_services.c +++ b/overlay_mdp_services.c @@ -1,5 +1,6 @@ /* -Copyright (C) 2010-2012 Paul Gardner-Stephen, Serval Project. +Copyright (C) 2010-2012 Paul Gardner-Stephen +Copyright (C) 2010-2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/overlay_olsr.c b/overlay_olsr.c index 9eb2d0d1..a3cbfab9 100644 --- a/overlay_olsr.c +++ b/overlay_olsr.c @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Serval Project. + Copyright (C) 2012 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/overlay_packet.h b/overlay_packet.h index aa105b25..5ac91fb9 100644 --- a/overlay_packet.h +++ b/overlay_packet.h @@ -1,5 +1,5 @@ /* - Serval Daemon + Serval DNA MDP overlay frame Copyright (C) 2012 Serval Project Inc. This program is free software; you can redistribute it and/or diff --git a/overlay_packetradio.c b/overlay_packetradio.c index a95f9988..c8a967a3 100644 --- a/overlay_packetradio.c +++ b/overlay_packetradio.c @@ -1,6 +1,6 @@ /* Serval DNA packet radio interface -Copyright (C) 2013 Serval Project, Inc. +Copyright (C) 2013 Serval Project Inc. Copyright (C) 2013 Paul Gardner-Stephen This program is free software; you can redistribute it and/or diff --git a/overlay_queue.c b/overlay_queue.c index b239b79a..d05e52b9 100644 --- a/overlay_queue.c +++ b/overlay_queue.c @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Serval Project Inc + Copyright (C) 2012-2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/pa_phone.c b/pa_phone.c index ed18ee7b..6aae93c8 100644 --- a/pa_phone.c +++ b/pa_phone.c @@ -1,6 +1,6 @@ /* Serval DNA Portaudio phone interface -Copyright (C) 2012 Serval Project, Inc. +Copyright (C) 2012 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/performance_timing.c b/performance_timing.c index 2d91fd3a..5a2d13a9 100644 --- a/performance_timing.c +++ b/performance_timing.c @@ -1,6 +1,6 @@ /* Serval Distributed Numbering Architecture (DNA) - Copyright (C) 2012 Serval Project, Inc. + Copyright (C) 2012 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/radio_link.h b/radio_link.h index 1dd92ccf..34de8290 100644 --- a/radio_link.h +++ b/radio_link.h @@ -1,3 +1,21 @@ +/* +Copyright (C) 2013 Paul Gardner-Stephen + +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 +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, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +*/ + #ifndef __SERVALD_RADIO_LINK_H #define __SERVALD_RADIO_LINK_H diff --git a/rhizome.c b/rhizome.c index 52fb912a..4b3b29f4 100644 --- a/rhizome.c +++ b/rhizome.c @@ -1,6 +1,6 @@ /* Serval DNA Rhizome file distribution -Copyright (C) 2012-2013 Serval Project, Inc. +Copyright (C) 2012-2013 Serval Project Inc. Copyright (C) 2011-2012 Paul Gardner-Stephen This program is free software; you can redistribute it and/or diff --git a/rhizome_database.c b/rhizome_database.c index d7a269e1..a012d88c 100644 --- a/rhizome_database.c +++ b/rhizome_database.c @@ -1,6 +1,6 @@ /* Serval Rhizome file sharing -Copyright (C) 2012 The Serval Project, Inc. +Copyright (C) 2012-2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/rhizome_fetch.c b/rhizome_fetch.c index efd0b51f..349961c7 100644 --- a/rhizome_fetch.c +++ b/rhizome_fetch.c @@ -1,6 +1,6 @@ /* Serval Distributed Numbering Architecture (DNA) -Copyright (C) 2012 Serval Project, Inc. +Copyright (C) 2012 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/rhizome_http.c b/rhizome_http.c index 4b5f201f..468c1917 100644 --- a/rhizome_http.c +++ b/rhizome_http.c @@ -1,6 +1,6 @@ /* Serval DNA Rhizome HTTP external interface -Copyright (C) 2013 Serval Project, Inc. +Copyright (C) 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/rhizome_store.c b/rhizome_store.c index ced48712..78e0c0f6 100644 --- a/rhizome_store.c +++ b/rhizome_store.c @@ -1,6 +1,6 @@ /* Serval DNA Rhizome storage -Copyright (C) 2013 Serval Project, Inc. +Copyright (C) 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/rhizome_sync.c b/rhizome_sync.c index be5c7fcb..412294f8 100644 --- a/rhizome_sync.c +++ b/rhizome_sync.c @@ -1,5 +1,5 @@ /* -Copyright (C) 2010-2012 Serval Project. +Copyright (C) 2010-2012 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/route_link.c b/route_link.c index 8669d77e..51102f3d 100644 --- a/route_link.c +++ b/route_link.c @@ -1,6 +1,6 @@ /* Serval DNA link state routing -Copyright (C) 2013 Serval Project, Inc. +Copyright (C) 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/serval.h b/serval.h index 629f000e..f929b245 100644 --- a/serval.h +++ b/serval.h @@ -1,7 +1,7 @@ /* Serval DNA header file Copyright (C) 2010-2012 Paul Gardner-Stephen -Copyright (C) 2012-2013 Serval Project, Inc. +Copyright (C) 2012-2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/socket.h b/socket.h index 056dedc0..558e28c1 100644 --- a/socket.h +++ b/socket.h @@ -1,3 +1,22 @@ +/* +Serval DNA header file for socket operations +Copyright (C) 2012-2013 Serval Project Inc. + +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 +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, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +*/ + #ifndef __SERVALD_SOCKET_H #define __SERVALD_SOCKET_H diff --git a/tfw_createfile.c b/tfw_createfile.c index 3ca1b75d..d8863e5e 100644 --- a/tfw_createfile.c +++ b/tfw_createfile.c @@ -1,6 +1,6 @@ /* Serval Project testing framework utility - create fixture file -Copyright (C) 2012 Serval Project, Inc. +Copyright (C) 2012 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/version_servald.c b/version_servald.c index 131497e5..dd99a472 100644 --- a/version_servald.c +++ b/version_servald.c @@ -1,6 +1,6 @@ /* Serval DNA version string -Copyright (C) 2013 Serval Project, Inc. +Copyright (C) 2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/vomp_console.c b/vomp_console.c index 4db2ea06..b907121c 100644 --- a/vomp_console.c +++ b/vomp_console.c @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Serval Project + Copyright (C) 2012-2013 Serval Project Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License