Loading Common/Interfaces/BackendsInterface/idl/Roach.idl +5 −0 Original line number Diff line number Diff line Loading @@ -125,7 +125,12 @@ module Backends { * @param configuration this string must contain the sequence of character that identifies the configuration that must be loaded. If the sequence is not * known an excpetion is thrown */ void initialize(in string configuration) raises (ComponentErrors::ComponentErrorsEx,BackendsErrors::BackendsErrorsEx); void getConfiguration(out string configuration); void getCommProtVersion(out string version); }; }; Loading Common/Servers/Roach/src/CommandLine.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -1456,7 +1456,7 @@ int CCommandLine::getCommProtVersion(char* version) if ((res=sendBuffer(sBuff,len))==SUCCESS) { res=receiveBuffer(rBuff,RECBUFFERSIZE); strcpy (version,rBuff); strcpy (version,(char*)rBuff); } if (res>0) { // operation was ok. //if (!CProtocol::status(rBuff)) { Loading Common/Servers/Roach/src/RoachImpl.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -784,7 +784,7 @@ void RoachImpl::getConfiguration (CORBA::String_out configuration) throw (CORBA: void RoachImpl::getCommProtVersion (CORBA::String_out version) throw (CORBA::SystemException) { AUTO_TRACE("RoachImpl::setIntegration()"); AUTO_TRACE("RoachImpl::getCommProtVersion()"); CSecAreaResourceWrapper<CCommandLine> line=m_commandLine->Get(); try { line->getCommProtVersion(version); Loading Loading
Common/Interfaces/BackendsInterface/idl/Roach.idl +5 −0 Original line number Diff line number Diff line Loading @@ -125,7 +125,12 @@ module Backends { * @param configuration this string must contain the sequence of character that identifies the configuration that must be loaded. If the sequence is not * known an excpetion is thrown */ void initialize(in string configuration) raises (ComponentErrors::ComponentErrorsEx,BackendsErrors::BackendsErrorsEx); void getConfiguration(out string configuration); void getCommProtVersion(out string version); }; }; Loading
Common/Servers/Roach/src/CommandLine.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -1456,7 +1456,7 @@ int CCommandLine::getCommProtVersion(char* version) if ((res=sendBuffer(sBuff,len))==SUCCESS) { res=receiveBuffer(rBuff,RECBUFFERSIZE); strcpy (version,rBuff); strcpy (version,(char*)rBuff); } if (res>0) { // operation was ok. //if (!CProtocol::status(rBuff)) { Loading
Common/Servers/Roach/src/RoachImpl.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -784,7 +784,7 @@ void RoachImpl::getConfiguration (CORBA::String_out configuration) throw (CORBA: void RoachImpl::getCommProtVersion (CORBA::String_out version) throw (CORBA::SystemException) { AUTO_TRACE("RoachImpl::setIntegration()"); AUTO_TRACE("RoachImpl::getCommProtVersion()"); CSecAreaResourceWrapper<CCommandLine> line=m_commandLine->Get(); try { line->getCommProtVersion(version); Loading