]> granicus.if.org Git - pdns/commitdiff
dnsdist: Fix indentation
authorRemi Gacogne <remi.gacogne@powerdns.com>
Mon, 31 Jul 2017 09:45:00 +0000 (11:45 +0200)
committerNick Saika <nsaika@globalcyberalliance.org>
Wed, 2 Aug 2017 15:40:56 +0000 (11:40 -0400)
pdns/dnsdist-lua.cc
pdns/dnsdist.hh

index ee7c438fdad0baae666634b35af0f8886eb5e20c..c3c58162f8dd16485a697281e43a7d98065b7cbe 100644 (file)
@@ -1605,29 +1605,28 @@ vector<std::function<void(void)>> setupLua(bool client, const std::string& confi
         dq.qTag->add(tag.first, tag.second);
       }
 
-     });
-
+    });
 
   g_lua.registerFunction<string(DNSQuestion::*)(std::string)>("getTag", [](const DNSQuestion& dq, const std::string& strLabel) {
 
-    std::string strValue;
-    if(dq.qTag != nullptr) {
-      strValue = dq.qTag->getMatch(strLabel);
-    }
-    return strValue;
+      std::string strValue;
+      if(dq.qTag != nullptr) {
+        strValue = dq.qTag->getMatch(strLabel);
+      }
+      return strValue;
 
-     });
+    });
 
 
   g_lua.registerFunction<std::unordered_map<string, string>(DNSQuestion::*)(void)>("getTagArray", [](const DNSQuestion& dq) {
 
-    if(dq.qTag != nullptr) {
-      return dq.qTag->tagData;
-    } else {
-      std::unordered_map<string, string> XX;
-      return XX;
-    }
-      });
+      if(dq.qTag != nullptr) {
+        return dq.qTag->tagData;
+      } else {
+        std::unordered_map<string, string> XX;
+        return XX;
+      }
+    });
 
 
   /* DNSQuestion bindings */
index 1763c060a977d97b48a312cb41558d59494cd62d..e92a72ecf090ed840e292a5bbd33699715432d8f 100644 (file)
@@ -57,72 +57,67 @@ extern bool g_ECSOverride;
 
 class QTag
 {
-
 public:
+  QTag()
+  {
+  }
 
-QTag()
-{
-}
-
-~QTag()
-{
-}
-
-void add(const std::string strLabel, const std::string strValue)
-{
-  tagData.insert( {strLabel, strValue});
-  return;
-}
+  ~QTag()
+  {
+  }
 
-std::string getMatch(const std::string& strLabel)  const
-{
-  std::unordered_map<std::string, std::string>::const_iterator got =tagData.find (strLabel);
-  if(got == tagData.end()) {
-    return "";
-  } else {
-    return got->second;
+  void add(const std::string strLabel, const std::string strValue)
+  {
+    tagData.insert( {strLabel, strValue});
+    return;
   }
-}
 
-std::string getEntry(size_t iEntry) const
-{
-   std::string strEntry;
-   size_t iCounter = 0;
-
-  for (const auto& itr : tagData) {
-    iCounter++;
-    if(iCounter == iEntry) {
-      strEntry = itr.first;
-      strEntry += strSep;
-      strEntry += itr.second;
-      break;
+  std::string getMatch(const std::string& strLabel)  const
+  {
+    std::unordered_map<std::string, std::string>::const_iterator got =tagData.find (strLabel);
+    if(got == tagData.end()) {
+      return "";
+    } else {
+      return got->second;
     }
   }
 
-  return strEntry;
+  std::string getEntry(size_t iEntry) const
+  {
+    std::string strEntry;
+    size_t iCounter = 0;
+
+    for (const auto& itr : tagData) {
+      iCounter++;
+      if(iCounter == iEntry) {
+        strEntry = itr.first;
+        strEntry += strSep;
+        strEntry += itr.second;
+        break;
+      }
+    }
 
-}
+    return strEntry;
+  }
 
-size_t count() const
-{
-   return tagData.size();
-}
+  size_t count() const
+  {
+    return tagData.size();
+  }
 
-std::string dumpString() const
-{
-  std::string strRet;
+  std::string dumpString() const
+  {
+    std::string strRet;
 
-  for (const auto& itr : tagData) {
-    strRet += itr.first;
-    strRet += strSep;
-    strRet += itr.second;
-    strRet += "\n";
+    for (const auto& itr : tagData) {
+      strRet += itr.first;
+      strRet += strSep;
+      strRet += itr.second;
+      strRet += "\n";
+    }
+    return strRet;
   }
-  return strRet;
 
-}
-
-public:
   std::unordered_map<std::string, std::string>tagData;
 
 private:
@@ -150,8 +145,7 @@ struct DNSQuestion
   const bool tcp;
   bool skipCache{false};
   bool ecsOverride;
-  bool useECS{true};    
-
+  bool useECS{true};
 };
 
 struct DNSResponse : DNSQuestion