Class CICMPSocketAsync::
OnSocketReceive()
Base ClassesConstructorsDestructorsFunctionsCustom CodeGo to hierarchy chart    Prev page: GetAsyncHandleNext page: SetAsync    Show member index
Protected Function Declared in:
ICMPSocketAsync.h

'Declaration' icon -- Shortcut to top of page. Declaration

virtual BOOL OnSocketReceive(
    int iErrorCode);

'Description' icon -- Shortcut to top of page. Description

Handle incoming data

'Function Body' icon -- Shortcut to top of page. Function Body

try
{
    //Here we receive the data
    if (!iErrorCode)
    {
        //Buffer
        char* buf;
        buf=new char[ICMP_BUF];

        //Read the data
        int iRead;
        iRead=Receive(buf,ICMP_BUF);

        BOOL bResult=FALSE;

        //Only if not an error
        if (iRead!=SOCKET_ERROR)
            bResult=ProccessICMP(buf);

        //Clean up
        delete [] buf;
        return bResult;
    }
    else
        return FALSE;
}
ERROR_HANDLER_AMBIG_RETURN(CSpoofSocket,"OnSocketReceive",FALSE)

'See Also' icon -- Shortcut to top of page. See Also

Class Overview Class Overview  |  Public base class CICMPSocket  |  Public base class CAsyncSocket  |  Hierarchy Chart Hierarchy Chart


Get Surveyor!This web site was generated using Surveyor V4.50.811.1.  Click here for more information. Site content copyright © 2001 Barak Weichselbaum. See the About page for additional notices. This page last updated: 27 Jun 2001.