Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
919 B

  1. // Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
  2. class SetQueryOperation : public SnmpGetOperation
  3. {
  4. private:
  5. BOOL rowReceived ;
  6. SnmpSession *session ;
  7. SnmpSetResponseEventObject *eventObject ;
  8. protected:
  9. void ReceiveResponse () ;
  10. void ReceiveVarBindResponse (
  11. IN const ULONG &var_bind_index,
  12. IN const SnmpVarBind &requestVarBind ,
  13. IN const SnmpVarBind &replyVarBind ,
  14. IN const SnmpErrorReport &error
  15. ) ;
  16. void ReceiveErroredVarBindResponse(
  17. IN const ULONG &var_bind_index,
  18. IN const SnmpVarBind &requestVarBind ,
  19. IN const SnmpErrorReport &error
  20. ) ;
  21. public:
  22. SetQueryOperation (IN SnmpSession &session, IN SnmpSetResponseEventObject *eventObjectArg ) ;
  23. ~SetQueryOperation () ;
  24. void Send () ;
  25. ULONG GetRowReceived () { return rowReceived ; }
  26. void DestroyOperation () { SnmpGetOperation :: DestroyOperation () ; }
  27. };