snmpdContinue( )

NAME

snmpdContinue( ) - continue processing of an SNMP packet

SYNOPSIS

void snmpdContinue 
    ( 
    SNMP_PKT_T *  pktp  /* snmp packet */ 
    );

DESCRIPTION

This routine continues processing a packet. The routine snmpdPktProcess( ) begins the method routines needed to fulfill the request, while this routine determines whether the current set of method routines have finished; it then either starts more method routines or sends a response packet.

If a method routine returns before completing its task, it must arrange for snmpdContinue( ) to be called when the task is completed. You must obtain the write-lock on this packet by calling snmpdPktLockGet( ) prior to calling snmpdContinue( ), which releases the write-lock when it completes.

pktp is a pointer to the structure that contains the packet.

RETURNS

N/A

SEE ALSO

snmpdLib