diff options
Diffstat (limited to 'nxcomp/Loop.cpp')
-rw-r--r-- | nxcomp/Loop.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/nxcomp/Loop.cpp b/nxcomp/Loop.cpp index 20114afbf..f051130dd 100644 --- a/nxcomp/Loop.cpp +++ b/nxcomp/Loop.cpp @@ -524,14 +524,6 @@ static int ParseHostOption(const char *opt, char *host, int &port); static int ParseFontPath(char *path); // -// Determine the interface where to listen for -// the remote proxy connection or the local -// forwarder. -// - -static int ParseListenOption(int &interface); - -// // Translate a pack method id in a literal. // @@ -13476,18 +13468,6 @@ ParseFontPathError: return -1; } -int ParseListenOption(int &address) -{ - if (loopbackBind || (control->ProxyMode == proxy_server)) { - address = htonl(INADDR_LOOPBACK); - } - else - { - address = htonl(INADDR_ANY); - } - return 1; -} - int OpenLogFile(char *name, ostream *&stream) { if (name == NULL || *name == '\0') |