CAsyncSocket::OnSend
Chamada pela estrutura para notificar o soquete agora ele pode enviar dados chamando o Enviarfunção de membro .
virtual void OnSend(
int nErrorCode
);
Parâmetros
nErrorCode
O erro mais recente em um soquete.Os códigos de erro a seguir se aplicam ao OnSend 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
// CMyAsyncSocket is derived from CAsyncSocket and defines the
// following variables:
// CString m_sendBuffer; //for async send
// int m_nBytesSent;
// int m_nBytesBufferSize;
void CMyAsyncSocket::OnSend(int nErrorCode)
{
while (m_nBytesSent < m_nBytesBufferSize)
{
int dwBytes;
if ((dwBytes = Send((LPCTSTR)m_sendBuffer + m_nBytesSent,
m_nBytesBufferSize - m_nBytesSent)) == SOCKET_ERROR)
{
if (GetLastError() == WSAEWOULDBLOCK)
{
break;
}
else
{
TCHAR szError[256];
_stprintf_s(szError, _T("Server Socket failed to send: %d"),
GetLastError());
Close();
AfxMessageBox (szError);
}
}
else
{
m_nBytesSent += dwBytes;
}
}
if (m_nBytesSent == m_nBytesBufferSize)
{
m_nBytesSent = m_nBytesBufferSize = 0;
m_sendBuffer = _T("");
}
CAsyncSocket::OnSend(nErrorCode);
}
Requisitos
Cabeçalho: afxsock.h