From 91a4b6bca46968324d76284d041d4bfc82c5a4fe Mon Sep 17 00:00:00 2001 From: RaNaN Date: Fri, 29 May 2009 19:53:46 +0200 Subject: requestobject and working interface to the core --- module/remote/RequestObject.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 module/remote/RequestObject.py (limited to 'module/remote/RequestObject.py') 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 -- cgit v1.2.3