snmpserv.cxx
上传用户:hzhsqp
上传日期:2007-01-06
资源大小:1600k
文件大小:4k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * snmpserv.cxx
  3.  *
  4.  * SNMP Server (agent) class
  5.  *
  6.  * Portable Windows Library
  7.  *
  8.  * Copyright (c) 1993-1998 Equivalence Pty. Ltd.
  9.  *
  10.  * The contents of this file are subject to the Mozilla Public License
  11.  * Version 1.0 (the "License"); you may not use this file except in
  12.  * compliance with the License. You may obtain a copy of the License at
  13.  * http://www.mozilla.org/MPL/
  14.  *
  15.  * Software distributed under the License is distributed on an "AS IS"
  16.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  17.  * the License for the specific language governing rights and limitations
  18.  * under the License.
  19.  *
  20.  * The Original Code is Portable Windows Library.
  21.  *
  22.  * The Initial Developer of the Original Code is Equivalence Pty. Ltd.
  23.  *
  24.  * Portions are Copyright (C) 1993 Free Software Foundation, Inc.
  25.  * All Rights Reserved.
  26.  *
  27.  * Contributor(s): ______________________________________.
  28.  *
  29.  * $Log: snmpserv.cxx,v $
  30.  * Revision 1.3  1998/11/30 04:52:09  robertj
  31.  * New directory structure
  32.  *
  33.  * Revision 1.2  1998/09/23 06:22:42  robertj
  34.  * Added open source copyright license.
  35.  *
  36.  * Revision 1.1  1996/09/14 13:02:18  robertj
  37.  * Initial revision
  38.  *
  39.  */
  40. #include <ptlib.h>
  41. #include <ptclib/psnmp.h>
  42. BOOL PSNMPServer::SendGetResponse (PSNMPVarBindingList &)
  43. {
  44.   PAssertAlways("SendGetResponse not yet implemented");
  45.   return GenErr;
  46. }
  47. void PSNMPServer::OnGetRequest (PSNMPVarBindingList &)
  48. {
  49. }
  50. void PSNMPServer::OnGetNextRequest (PSNMPVarBindingList &)
  51. {
  52. }
  53. void PSNMPServer::OnSetRequest (PSNMPVarBindingList &)
  54. {
  55. }
  56. BOOL PSNMP::DecodeTrap(const PBYTEArray & readBuffer,
  57.                                        PINDEX & version,
  58.                                       PString & community,
  59.                                       PString & enterprise,
  60.                            PIPSocket::Address & address,
  61.                                        PINDEX & genericTrapType,
  62.                                       PINDEX  & specificTrapType,
  63.                                  PASNUnsigned & timeTicks,
  64.                           PSNMPVarBindingList & varsOut)
  65. {
  66.   // parse the response
  67.   PASNSequence response(readBuffer);
  68.   PINDEX seqLen = response.GetSize();
  69.   // check PDU
  70.   if (seqLen != 3 ||
  71.       response[0].GetType() != PASNObject::Integer ||
  72.       response[1].GetType() != PASNObject::String ||
  73.       response[2].GetType() != PASNObject::Choice) 
  74.     return FALSE;
  75.   // check the PDU data
  76.   const PASNSequence & rPduData = response[2].GetSequence();
  77.   seqLen = rPduData.GetSize();
  78.   if (seqLen != 6 ||
  79.       rPduData.GetChoice()  != Trap ||
  80.       rPduData[0].GetType() != PASNObject::ObjectID ||
  81.       rPduData[1].GetType() != PASNObject::IPAddress ||
  82.       rPduData[2].GetType() != PASNObject::Integer ||
  83.       rPduData[3].GetType() != PASNObject::Integer ||
  84.       rPduData[4].GetType() != PASNObject::TimeTicks ||
  85.       rPduData[5].GetType() != PASNObject::Sequence) 
  86.     return FALSE;
  87.   version          = response[0].GetInteger();
  88.   community        = response[1].GetString();
  89.   enterprise       = rPduData[0].GetString();
  90.   address          = rPduData[1].GetIPAddress();
  91.   genericTrapType  = rPduData[2].GetInteger();
  92.   specificTrapType = rPduData[3].GetInteger();
  93.   timeTicks        = rPduData[4].GetUnsigned();
  94.   // check the variable bindings
  95.   const PASNSequence & rBindings = rPduData[5].GetSequence();
  96.   PINDEX bindingCount = rBindings.GetSize();
  97.   // create the return list
  98.   for (PINDEX i = 0; i < bindingCount; i++) {
  99.     if (rBindings[i].GetType() != PASNObject::Sequence) 
  100.       return TRUE;
  101.     const PASNSequence & rVar = rBindings[i].GetSequence();
  102.     if (rVar.GetSize() != 2 ||
  103.         rVar[0].GetType() != PASNObject::ObjectID) 
  104.       return TRUE;
  105.     varsOut.Append(rVar[0].GetString(), (PASNObject *)rVar[1].Clone());
  106.   }
  107.   return TRUE;
  108. }
  109. // End Of File ///////////////////////////////////////////////////////////////