]> granicus.if.org Git - pdns/commitdiff
add some missing GPL repetitions
authorBert Hubert <bert.hubert@netherlabs.nl>
Sun, 27 Mar 2011 20:10:42 +0000 (20:10 +0000)
committerBert Hubert <bert.hubert@netherlabs.nl>
Sun, 27 Mar 2011 20:10:42 +0000 (20:10 +0000)
git-svn-id: svn://svn.powerdns.com/pdns/trunk/pdns@2102 d19b8d6e-7fed-0310-83ef-9ca221ded41b

pdns/backends/gsql/gsqlbackend.cc
pdns/dnsseckeeper.hh

index 0bcaea7577aa885706e22e8c8be71e79192ebe82..7e244c0cf172fd56bcb12b7ef1193d71eb75518c 100644 (file)
@@ -1,3 +1,21 @@
+/*
+    PowerDNS Versatile Database Driven Nameserver
+    Copyright (C) 2002-2011  PowerDNS.COM BV
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License version 2 as 
+    published by the Free Software Foundation
+
+    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 St, Fifth Floor, Boston, MA  02110-1301  USA
+*/
+
 // $Id$ 
 #ifdef WIN32
 # pragma warning ( disable: 4786 )
index 9281bb41464760b4279b0cc6a1a0ccaf19a7a0e9..db93944b50b4c6b3f9bdfabad725e063ab6150fa 100644 (file)
@@ -1,5 +1,23 @@
 #ifndef PDNSDNSSECKEEPER_HH
 #define PDNSDNSSECKEEPER_HH
+/*
+    PowerDNS Versatile Database Driven Nameserver
+    Copyright (C) 2002-2011  PowerDNS.COM BV
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License version 2 as 
+    published by the Free Software Foundation
+
+    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 St, Fifth Floor, Boston, MA  02110-1301  USA
+*/
+
 #include <string>
 #include <string.h>
 #include <vector>
@@ -69,9 +87,9 @@ public:
          (*d_keymetadb.backends.begin())->commitTransaction();
   }
   
-  
-private:
   void getFromMeta(const std::string& zname, const std::string& key, std::string& value);
+private:
+
   
   struct KeyCacheEntry
   {
@@ -127,4 +145,6 @@ private:
   static pthread_mutex_t s_keycachelock;
 };
 
+class DNSPacket;
+bool editSOA(DNSSECKeeper& dk, const string& qname, DNSPacket* dp);
 #endif