summaryrefslogtreecommitdiff
path: root/src/modules/extra/ssl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/extra/ssl.h')
-rw-r--r--src/modules/extra/ssl.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/modules/extra/ssl.h b/src/modules/extra/ssl.h
index 6768a31a2..e636aad46 100644
--- a/src/modules/extra/ssl.h
+++ b/src/modules/extra/ssl.h
@@ -149,5 +149,42 @@ class ssl_cert
}
};
+class ISHRequest : public Request
+{
+ public:
+ const InspSocket* Sock;
+
+ ISHRequest(Module* Me, Module* Target, const char* rtype, InspSocket* sock) : Request(Me, Target, rtype), Sock(sock)
+ {
+ }
+};
+
+class InspSocketHookRequest : public ISHRequest
+{
+ public:
+ /** Initialize request as a hook message */
+ InspSocketHookRequest(InspSocket* is, Module* Me, Module* Target) : ISHRequest(Me, Target, "IS_HOOK", is)
+ {
+ }
+};
+
+class InspSocketUnhookRequest : public ISHRequest
+{
+ public:
+ /** Initialize request as an unhook message */
+ InspSocketUnhookRequest(InspSocket* is, Module* Me, Module* Target) : ISHRequest(Me, Target, "IS_UNHOOK", is)
+ {
+ }
+};
+
+class InspSocketNameRequest : public ISHRequest
+{
+ public:
+ /** Initialize request as a get name message */
+ InspSocketNameRequest(Module* Me, Module* Target) : ISHRequest(Me, Target, "IS_NAME", NULL)
+ {
+ }
+};
+
#endif