summaryrefslogtreecommitdiff
path: root/include/modules/hs_request.h
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2021-05-25 22:06:50 +0100
committerSadie Powell <sadie@witchery.services>2024-03-07 18:50:36 +0000
commit12214bee7228f884918dacff56108604e10bdc46 (patch)
treefa977d680247d58a01f0664989c429be928eb55c /include/modules/hs_request.h
parent08a35231ef00ee9dd3af80c186a78b740cd8185a (diff)
Add the initial version of the Atheme database importer.
Diffstat (limited to 'include/modules/hs_request.h')
-rw-r--r--include/modules/hs_request.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/modules/hs_request.h b/include/modules/hs_request.h
new file mode 100644
index 000000000..43977c01d
--- /dev/null
+++ b/include/modules/hs_request.h
@@ -0,0 +1,23 @@
+/*
+ *
+ * (C) 2003-2024 Anope Team
+ * Contact us at team@anope.org
+ *
+ * Please read COPYING and README for further details.
+ */
+
+#pragma once
+
+class HostRequest
+{
+protected:
+ HostRequest() = default;
+
+public:
+ Anope::string nick;
+ Anope::string ident;
+ Anope::string host;
+ time_t time = 0;
+
+ virtual ~HostRequest() = default;
+};