Remove remnants of the old HTTP server

This commit is contained in:
Lauri Kasanen
2020-09-21 13:17:11 +03:00
parent 6e5a837c21
commit 49f9ce8e5b
10 changed files with 1 additions and 805 deletions

View File

@@ -314,21 +314,6 @@ void SDisplay::clientCutText(const char* text, int len) {
}
Point SDisplay::getFbSize() {
bool startAndStop = !core;
// If not started, do minimal initialisation to get desktop size.
if (startAndStop)
recreatePixelBuffer();
Point result = Point(pb->width(), pb->height());
// Destroy the initialised structures.
if (startAndStop)
stopCore();
return result;
}
void
SDisplay::notifyClipboardChanged(const char* text, int len) {
vlog.debug("clipboard text changed");

View File

@@ -86,12 +86,6 @@ namespace rfb {
void setStatusLocation(bool* status) {statusLocation = status;}
// -=- Used (indirectly) by JavaViewer to get desktop size
Point getFbSize();
friend class SDisplayCore;
static IntParameter updateMethod;
static BoolParameter disableLocalInputs;
static StringParameter disconnectAction;