Lines Matching refs:LMEConnection

36 #include "LMEConnection.h"
50 const GUID LMEConnection::_guid = {0x6733a4db, 0x0476, 0x4e7b, {0xb3, 0xaf, 0xbc, 0xfc, 0x29, 0xbe, 0xe7, 0xa7}};
52 const UINT32 LMEConnection::RX_WINDOW_SIZE = 1024;
54 LMEConnection::LMEConnection(bool verbose) :
67 LMEConnection::~LMEConnection()
71 bool LMEConnection::IsInitialized()
77 bool LMEConnection::Init(HECICallback cb, void *param)
118 void LMEConnection::Deinit()
140 bool LMEConnection::Disconnect(APF_DISCONNECT_REASON_CODE reasonCode)
161 bool LMEConnection::ServiceAccept(std::string serviceName)
195 bool LMEConnection::UserAuthSuccess()
210 bool LMEConnection::ProtocolVersion(const LMEProtocolVersionMessage versionMessage)
231 bool LMEConnection::TcpForwardReplySuccess(UINT32 port)
249 bool LMEConnection::TcpForwardReplyFailure()
264 bool LMEConnection::TcpForwardCancelReplySuccess()
279 bool LMEConnection::TcpForwardCancelReplyFailure()
294 bool LMEConnection::ChannelOpenForwardedRequest(UINT32 senderChannel,
355 bool LMEConnection::ChannelOpenReplaySuccess(UINT32 recipientChannel,
377 bool LMEConnection::ChannelOpenReplayFailure(UINT32 recipientChannel,
399 bool LMEConnection::ChannelClose(UINT32 recipientChannel)
417 int LMEConnection::ChannelData(UINT32 recipientChannel,
441 bool LMEConnection::ChannelWindowAdjust(UINT32 recipientChannel, UINT32 len)
460 int LMEConnection::_receiveMessage(unsigned char *buffer, int len)
478 int LMEConnection::_sendMessage(unsigned char *buffer, int len)
498 void LMEConnection::_rxThreadFunc(void *param)
500 LMEConnection *connection = (LMEConnection *)param;
510 PRINT("LMEConnection do RX exception\n");
515 bool LMEConnection::_checkMinMsgSize(unsigned char *buf, unsigned int bytesRead)
595 void LMEConnection::_doRX()
756 void LMEConnection::_apfChannelOpen(unsigned char *rxBuffer, unsigned int bytesRead, int *status)
779 void LMEConnection::_apfChannelOpenDirect(unsigned char *rxBuffer, unsigned int bytesRead, UINT32 *senderChannel, int *status)
816 void LMEConnection::_apfGlobalRequest(unsigned char *rxBuffer, unsigned int bytesRead, int *status)
956 void LMEConnection::_apfUserAuthRequest(unsigned char *rxBuffer, unsigned int bytesRead, int *status)
1042 unsigned int LMEConnection::GetHeciBufferSize() const