(file) Return to snmpDeliverTrap_netsnmp.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Handler / snmpIndicationHandler

Diff for /pegasus/src/Pegasus/Handler/snmpIndicationHandler/snmpDeliverTrap_netsnmp.h between version 1.6 and 1.12

version 1.6, 2006/11/14 18:34:53 version 1.12, 2010/12/22 12:19:06
Line 1 
Line 1 
 //%2006////////////////////////////////////////////////////////////////////////  //%LICENSE////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development  // Licensed to The Open Group (TOG) under one or more contributor license
 // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.  // agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
 // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;  // this work for additional information regarding copyright ownership.
 // IBM Corp.; EMC Corporation, The Open Group.  // Each contributor licenses this file to you under the OpenPegasus Open
 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;  // Source License; you may not use this file except in compliance with the
 // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.  // License.
 // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;  
 // EMC Corporation; VERITAS Software Corporation; The Open Group.  
 // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;  
 // EMC Corporation; Symantec Corporation; The Open Group.  
 //  
 // Permission is hereby granted, free of charge, to any person obtaining a copy  
 // of this software and associated documentation files (the "Software"), to  
 // deal in the Software without restriction, including without limitation the  
 // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or  
 // sell copies of the Software, and to permit persons to whom the Software is  
 // furnished to do so, subject to the following conditions:  
 //  
 // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN  
 // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED  
 // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT  
 // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR  
 // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT  
 // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN  
 // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION  
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  
 // //
 //==============================================================================  // Permission is hereby granted, free of charge, to any person obtaining a
   // copy of this software and associated documentation files (the "Software"),
   // to deal in the Software without restriction, including without limitation
   // the rights to use, copy, modify, merge, publish, distribute, sublicense,
   // and/or sell copies of the Software, and to permit persons to whom the
   // Software is furnished to do so, subject to the following conditions:
   //
   // The above copyright notice and this permission notice shall be included
   // in all copies or substantial portions of the Software.
   //
   // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
   // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
   // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
   // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
   // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
   //
   //////////////////////////////////////////////////////////////////////////
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 35 
Line 33 
  
 #include <net-snmp/net-snmp-config.h> #include <net-snmp/net-snmp-config.h>
 #include <net-snmp/net-snmp-includes.h> #include <net-snmp/net-snmp-includes.h>
   #include <net-snmp/config_api.h>
 #include <Pegasus/Common/Mutex.h> #include <Pegasus/Common/Mutex.h>
 #include "snmpDeliverTrap.h" #include "snmpDeliverTrap.h"
  
Line 59 
Line 58 
         "_MSG_PDU_CREATE_FAILED";         "_MSG_PDU_CREATE_FAILED";
  
 static const char _MSG_VERSION_NOT_SUPPORTED[] = static const char _MSG_VERSION_NOT_SUPPORTED[] =
     "SNMPv1 Trap and SNMPv2C Trap are the only supported SNMPVersion values.";      "SNMPv1 Trap, SNMPv2C Trap and SNMPV3 are the only supported SNMPVersion "
            "values.";
 static const char _MSG_VERSION_NOT_SUPPORTED_KEY[] = static const char _MSG_VERSION_NOT_SUPPORTED_KEY[] =
     "Handler.snmpIndicationHandler.snmpDeliverTrap_netsnmp."     "Handler.snmpIndicationHandler.snmpDeliverTrap_netsnmp."
         "_MSG_VERSION_NOT_SUPPORTED";         "_MSG_VERSION_NOT_SUPPORTED";
Line 147 
Line 147 
         const Uint32& portNumber,         const Uint32& portNumber,
         const Uint16& snmpVersion,         const Uint16& snmpVersion,
         const String& engineID,         const String& engineID,
           const Uint8& snmpSecLevel,
           const Uint8& snmpSecAuthProto,
           const Array<Uint8>& snmpSecAuthKey,
           const Uint8& snmpSecPrivProto,
           const Array<Uint8>& snmpSecPrivKey,
         const Array<String>& vbOids,         const Array<String>& vbOids,
         const Array<String>& vbTypes,         const Array<String>& vbTypes,
         const Array<String>& vbValues);         const Array<String>& vbValues);
Line 161 
Line 166 
         Creates a SNMP session.         Creates a SNMP session.
  
         @param targetHost     the target system of a hostname or an IPv4         @param targetHost     the target system of a hostname or an IPv4
                               address                                  address or an IPv6 address to receive a trap
                               to receive a trap          @param targetHostFormat the format of the targetHost
         @param portNumber     the port number to receive a trap         @param portNumber     the port number to receive a trap
         @param securityName   the human readable community name         @param securityName   the human readable community name
           @param snmpVersion      the snmp version
           @param engineID         the engine ID
           @param snmpSecLevel     the security level
                                   (authNoPriv,authPriv,noAuthNoPriv)
           @param snmpSecAuthProto MD5 or SHA
           @param snmpSecAuthKey   encoded authentication key
           @param snmpSecPrivProto AES or DES
           @param snmpSecPrivKey   encoded privacy key
         @param sessionHandle  an opaque pointer of the SNMP session         @param sessionHandle  an opaque pointer of the SNMP session
         @param sessionPtr     the SNMP session pointer to its associated         @param sessionPtr     the SNMP session pointer to its associated
                               struct snmp_session                               struct snmp_session
     */     */
     void _createSession(     void _createSession(
         const String& targetHost,         const String& targetHost,
           Uint16 targetHostFormat,
         Uint32 portNumber,         Uint32 portNumber,
         const String& securityName,         const String& securityName,
           Uint16 snmpVersion,
           const String& engineID,
           const Uint8& snmpSecLevel,
           const Uint8& snmpSecAuthProto,
           const Array<Uint8>& snmpSecAuthKey,
           const Uint8& snmpSecPrivProto,
           const Array<Uint8>& snmpSecPrivKey,
         void*& sessionHandle,         void*& sessionHandle,
         struct snmp_session*& sessionPtr);         struct snmp_session*& sessionPtr);
  
     /**     /**
           Add the community string to the snmp session for V1 and V2C
   
           @param sessionPtr    the SNMP session pointer to its associated
                                struct snmp_session
           @param securityName     the human readable community name
       */
       void _addCommunity(
           struct snmp_session*& sessionPtr,
           const String& securityName);
   
       /**
         Creates a SNMP session.         Creates a SNMP session.
  
         @param sessionHandle  an opaque pointer of the SNMP session         @param sessionHandle  an opaque pointer of the SNMP session
Line 229 
Line 261 
         _SNMPv3_TRAP = 5,         _SNMPv3_TRAP = 5,
         _SNMPv3_INFORM = 6         _SNMPv3_INFORM = 6
     };     };
   
       /**
           Values for the TargetHostFormat property of the
           PG_IndicationHandlerSNMPMapper class.
       */
       enum TargetHostFormat
       {
           _OTHER = 1,
           _HOST_NAME = 2,
           _IPV4_ADDRESS = 3,
           _IPV6_ADDRESS = 4
       };
 }; };
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.6  
changed lines
  Added in v.1.12

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2