Removed unnecessary variable names.
This commit is contained in:
parent
b2e11d3d35
commit
6c56f8a9fc
|
@ -1337,7 +1337,7 @@ CServer::runClient(void* vsocket)
|
||||||
try {
|
try {
|
||||||
CProtocolUtil::writef(proxy->getOutputStream(), kMsgEBad);
|
CProtocolUtil::writef(proxy->getOutputStream(), kMsgEBad);
|
||||||
}
|
}
|
||||||
catch (XSocket& e) {
|
catch (XSocket&) {
|
||||||
// ignore. client probably aborted the connection.
|
// ignore. client probably aborted the connection.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1453,7 +1453,7 @@ CServer::handshakeClient(IDataSocket* socket)
|
||||||
CProtocolUtil::writef(output, kMsgEIncompatible,
|
CProtocolUtil::writef(output, kMsgEIncompatible,
|
||||||
kProtocolMajorVersion, kProtocolMinorVersion);
|
kProtocolMajorVersion, kProtocolMinorVersion);
|
||||||
}
|
}
|
||||||
catch (XSocket& e) {
|
catch (XSocket&) {
|
||||||
// ignore
|
// ignore
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1463,7 +1463,7 @@ CServer::handshakeClient(IDataSocket* socket)
|
||||||
try {
|
try {
|
||||||
CProtocolUtil::writef(output, kMsgEBad);
|
CProtocolUtil::writef(output, kMsgEBad);
|
||||||
}
|
}
|
||||||
catch (XSocket& e) {
|
catch (XSocket&) {
|
||||||
// ignore. client probably aborted the connection.
|
// ignore. client probably aborted the connection.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue