* This class is inherited from the IRA::CSocket class. It takes charge of the management of the socket used to command the SRT ACU via the remote interface.
* if the remote side disconnects or a problem affects the comunication line, this class try to reconnect to the ACU until the communication is up again..
@@ -56,8 +56,17 @@ public:
* @throw TimeoutExImpl if the operation timeout before completing.
* @thorw SocketErrorExImpl if the connection fails before completing. In that case the status is set to <i>Antenna::ACU_NOTCNTD</i>
* This mutex is used to sync external calls to the public methods of the class. The requirements is that just one call at the time must be served if the methos requires to
* send a message to the ACU. the reason for that is that we need to wait to known the result of the previous command to the ACU that comes form the status socket.
*/
ACE_Recursive_Thread_Mutexm_syncMutex;
/**
* This member function is called to send a buffer to the ACU.
* @param Msg pointer to the byte buffer that contains the message for the ACU
* This member function is called to send a buffer to the DBESM.
* @param Msg pointer to the byte buffer that contains the message for the DBESM
* @param Len length of the buffer
* @param error It will contain the error description in case the operation fails.
* @return SUCCESS if the buffer was sent correctly, WOULDBLOCK if the send would block, FAIL in case of error, the parameter error is set accordingly.