summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/error.h2
-rw-r--r--src/client/ocsp-client.cpp2
-rw-r--r--src/client/ocsp-client.h2
3 files changed, 0 insertions, 6 deletions
diff --git a/src/client/error.h b/src/client/error.h
index 7504350..cae1348 100644
--- a/src/client/error.h
+++ b/src/client/error.h
@@ -22,12 +22,10 @@
#pragma once
namespace CCHECKER {
-namespace Client {
using CCerr = int;
const CCerr E_CC_NONE = 0;
const CCerr E_CC_INTERNAL = -1;
-} // namespace Client
} // namespace CCHECKER
diff --git a/src/client/ocsp-client.cpp b/src/client/ocsp-client.cpp
index c805715..63e6d26 100644
--- a/src/client/ocsp-client.cpp
+++ b/src/client/ocsp-client.cpp
@@ -26,7 +26,6 @@
#include "common/log.h"
namespace CCHECKER {
-namespace Client {
OcspClient::OcspClient() :
m_address(SERVICE_STREAM)
@@ -50,5 +49,4 @@ CCerr OcspClient::request()
return E_CC_INTERNAL;
}
-} // namespace Client
} // namespace CCHECKER
diff --git a/src/client/ocsp-client.h b/src/client/ocsp-client.h
index e1f29bb..e4aafb6 100644
--- a/src/client/ocsp-client.h
+++ b/src/client/ocsp-client.h
@@ -28,7 +28,6 @@
#include "client/error.h"
namespace CCHECKER {
-namespace Client {
class OcspClient {
public:
@@ -45,5 +44,4 @@ private:
std::unique_ptr<Dispatcher> m_dispatcher;
};
-} // namespace Client
} // namespace CCHECKER