From ccc632e59adaa4bdb44905a7291dbecae45dd33e Mon Sep 17 00:00:00 2001 From: henrih Date: Fri, 27 Nov 2009 17:34:40 +0000 Subject: Removed "local" parameter from the InitMsg, since we do not yet implement a proper mechanism for determining it. git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@656 09dcff7a-b715-0410-9601-b79a96267cd0 --- orkbasecxx/messages/InitMsg.cpp | 2 -- orkbasecxx/messages/InitMsg.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/orkbasecxx/messages/InitMsg.cpp b/orkbasecxx/messages/InitMsg.cpp index 35a03be..f5de4a5 100644 --- a/orkbasecxx/messages/InitMsg.cpp +++ b/orkbasecxx/messages/InitMsg.cpp @@ -18,7 +18,6 @@ InitMsg::InitMsg() m_tcpPort = 59140; m_fileServePort = 8080; m_streamingPort = 59120; - m_local = false; m_sshPort = 22; } @@ -37,7 +36,6 @@ void InitMsg::Define(Serializer* s) s->StringValue(SERVE_PATH_PARAM, m_servePath); s->StringValue(ABSOLUTE_PATH_PARAM, m_absolutePath); s->IntValue(STREAMING_PORT_PARAM, m_streamingPort); - s->BoolValue(LOCAL_PARAM, m_local); s->StringValue(USERNAME_PARAM, m_username); s->StringValue(PASSWORD_PARAM, m_password); s->IntValue(SSH_PORT_PARAM, m_sshPort); diff --git a/orkbasecxx/messages/InitMsg.h b/orkbasecxx/messages/InitMsg.h index 27e3ed3..f594829 100644 --- a/orkbasecxx/messages/InitMsg.h +++ b/orkbasecxx/messages/InitMsg.h @@ -23,7 +23,6 @@ #define SERVE_PATH_PARAM "servepath" #define ABSOLUTE_PATH_PARAM "absolutepath" #define STREAMING_PORT_PARAM "streamingport" -#define LOCAL_PARAM "local" #define USERNAME_PARAM "username" #define PASSWORD_PARAM "password" #define SSH_PORT_PARAM "sshport" @@ -50,7 +49,6 @@ public: CStdString m_servePath; CStdString m_absolutePath; int m_streamingPort; - bool m_local; CStdString m_username; CStdString m_password; int m_sshPort; -- cgit v1.2.3