summaryrefslogtreecommitdiffstats
path: root/module/remote/RequestObject.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/remote/RequestObject.py')
-rw-r--r--module/remote/RequestObject.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/module/remote/RequestObject.py b/module/remote/RequestObject.py
new file mode 100644
index 000000000..77322663a
--- /dev/null
+++ b/module/remote/RequestObject.py
@@ -0,0 +1,17 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+"""
+authored by: RaNaN
+
+this module handels the incoming requests
+
+"""
+
+class RequestObject(object):
+ def __init__(self):
+ self.version = 0
+ self.sender = "ip"
+ self.command = None
+ self.function = ""
+ self.args = []
+ self.response = "" \ No newline at end of file