Rename classes to match filenames.

This commit is contained in:
Nathan Osman
2017-07-07 20:44:43 -07:00
parent 2fdf8fac71
commit fd7e7e9603
53 changed files with 464 additions and 462 deletions

View File

@@ -33,12 +33,12 @@ ProxyHandlerPrivate::ProxyHandlerPrivate(QObject *parent, const QHostAddress &ad
}
ProxyHandler::ProxyHandler(const QHostAddress &address, quint16 port, QObject *parent)
: HttpHandler(parent),
: Handler(parent),
d(new ProxyHandlerPrivate(this, address, port))
{
}
void ProxyHandler::process(HttpSocket *socket, const QString &path)
void ProxyHandler::process(Socket *socket, const QString &path)
{
// Parent the socket to the proxy
socket->setParent(this);