]> git.ipfire.org Git - thirdparty/pdns.git/blobdiff - pdns/dynmessenger.hh
Add some notes explaining why some validations are not relevant in the dnstap case.
[thirdparty/pdns.git] / pdns / dynmessenger.hh
index 5a78a9c92fd5d96d218e402631ab025ef2baab97..c9e60d5e9db897702910ebdde627b6e66893c9df 100644 (file)
@@ -1,21 +1,24 @@
 /*
-    PowerDNS Versatile Database Driven Nameserver
-    Copyright (C) 2002  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
-*/
+ * This file is part of PowerDNS or dnsdist.
+ * Copyright -- PowerDNS.COM B.V. and its contributors
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of version 2 of the GNU General Public License as
+ * published by the Free Software Foundation.
+ *
+ * In addition, for the avoidance of any doubt, permission is granted to
+ * link this program with OpenSSL and to (re)distribute the binaries
+ * produced as the result of such linking.
+ *
+ * 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 DYNMESSENGER_HH
 #define DYNMESSENGER_HH
 
@@ -37,7 +40,6 @@ class DynMessenger
 {
   int d_s;
 
-  struct sockaddr_un d_local; // our local address
   struct sockaddr_un d_remote; // our remote address
 
   DynMessenger(const DynMessenger &); // NOT IMPLEMENTED
@@ -45,8 +47,15 @@ class DynMessenger
 public:
   // CREATORS
 
-  DynMessenger(const string &ldir, const string &filename);  //!< Create a DynMessenger sending to this file
-  DynMessenger(const ComboAddress& remote, const string &password);  //!< Create a DynMessenger sending to this file
+  DynMessenger(const string &filename,
+    int timeout_sec = 7,
+    int timeout_usec = 0);  //!< Create a DynMessenger sending to this file
+
+  DynMessenger(const ComboAddress& remote,
+    const string &password,
+    int timeout_sec = 7,
+    int timeout_usec = 0);  //!< Create a DynMessenger sending to this file
+
   ~DynMessenger();
 
   // ACCESSORS