initial code repo
[stor4nfv.git] / src / ceph / src / rgw / rgw_resolve.h
diff --git a/src/ceph/src/rgw/rgw_resolve.h b/src/ceph/src/rgw/rgw_resolve.h
new file mode 100644 (file)
index 0000000..6e00aaa
--- /dev/null
@@ -0,0 +1,27 @@
+// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
+// vim: ts=8 sw=2 smarttab
+
+#ifndef CEPH_RGW_RESOLVE_H
+#define CEPH_RGW_RESOLVE_H
+
+#include "rgw_common.h"
+
+namespace ceph {
+  class DNSResolver;
+}
+
+class RGWResolver {
+  DNSResolver *resolver;
+
+public:
+  ~RGWResolver();
+  RGWResolver();
+  int resolve_cname(const string& hostname, string& cname, bool *found);
+};
+
+
+extern void rgw_init_resolver(void);
+extern void rgw_shutdown_resolver(void);
+extern RGWResolver *rgw_resolver;
+
+#endif