Rename Server- and ClientMessage

Renamed ServerMessage and ClientMessage to respectively ResponseMessage
and RequestMessage to make it more clear.
This commit is contained in:
2021-03-28 01:59:08 +01:00
parent 1f0ade0f09
commit 48c4f207a8
5 changed files with 6 additions and 6 deletions

View File

@@ -12,7 +12,7 @@ from httplib import parser
from httplib.exceptions import MethodNotAllowed, BadRequest, UnsupportedEncoding, NotImplemented, NotFound, \
HTTPVersionNotSupported
from httplib.httpsocket import HTTPSocket, FORMAT
from httplib.message import ServerMessage as Message
from httplib.message import RequestMessage as Message
from httplib.retriever import Retriever, PreambleRetriever
from server import command
from server.serversocket import ServerSocket