Partilhar via


CAsyncSocket::OnReceive

Chamada pela estrutura para notificar esse soquete que haja dados no buffer que pode ser recuperado chamando o Receberfunção de membro .

virtual void OnReceive(
   int nErrorCode 
);

Parâmetros

  • nErrorCode
    O erro mais recente em um soquete.Os códigos de erro a seguir se aplicam ao OnReceive função de membro:

    • 0   A função foi executada com êxito.

    • WSAENETDOWN   A implementação do Windows Sockets detectou que o subsistema de rede falhou.

Comentários

Para obter mais informações, consulte Windows Sockets: Soquete notificações.

Exemplo

void CMyAsyncSocket::OnReceive(int nErrorCode)   // CMyAsyncSocket is 
                                                // derived from CAsyncSocket
{
   static int i = 0;

   i++;

   TCHAR buff[4096];
   int nRead;
   nRead = Receive(buff, 4096); 

   switch (nRead)
   {
      case 0:
        Close();
        break;
      case SOCKET_ERROR:
        if (GetLastError() != WSAEWOULDBLOCK) 
        {
          AfxMessageBox (_T("Error occurred"));
          Close();
        }
        break;
      default:
        buff[nRead] = _T('\0'); //terminate the string
        CString szTemp(buff);
        m_strRecv += szTemp;   // m_strRecv is a CString declared 
                        // in CMyAsyncSocket
        if (szTemp.CompareNoCase(_T("bye")) == 0)
        {
           ShutDown();
           s_eventDone.SetEvent();
        }
   }
   CAsyncSocket::OnReceive(nErrorCode);
}

Requisitos

Cabeçalho: afxsock.h

Consulte também

Referência

Classe CAsyncSocket

Gráfico de hierarquia

CAsyncSocket::GetLastError

CAsyncSocket::OnAccept

CAsyncSocket::OnClose

CAsyncSocket::OnConnect

CAsyncSocket::OnOutOfBandData

CAsyncSocket::OnSend

CAsyncSocket::Receive

Outros recursos

CAsyncSocket membros