From dfc97ffedb9a356299b593f76ce057f5953a77ab Mon Sep 17 00:00:00 2001 From: Alvaro Neira Ayuso Date: Mon, 16 Dec 2019 11:17:09 +0100 Subject: Merge ogRest and ogProcess to have only one class --- src/ogClient.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ogClient.py') diff --git a/src/ogClient.py b/src/ogClient.py index 48ae5e7..fb87bac 100644 --- a/src/ogClient.py +++ b/src/ogClient.py @@ -6,7 +6,7 @@ import email from io import StringIO from src.HTTPParser import * -from src.ogProcess import * +from src.ogRest import * from enum import Enum class State(Enum): @@ -74,7 +74,7 @@ class ogClient: self.data = self.data + data httpparser = HTTPParser() - ogprocess = ogProcess() + ogrest = ogRest() if not self.trailer: if self.data.find("\r\n") > 0: @@ -89,7 +89,7 @@ class ogClient: if self.trailer and len(self.data) >= self.content_len: httpparser.parser(self.data) - ogprocess.processOperation(httpparser.getRequestOP(), httpparser.getURI(), self) + ogrest.processOperation(httpparser.getRequestOP(), httpparser.getURI(), self) # Cleanup state information from request self.data = "" -- cgit v1.2.3-18-g5258