snmp_api.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. #ifndef PRO_SNMP_API_H
  2. #define PRO_SNMP_API_H
  3. /*
  4. * Copyright 1998-2007 by egnite Software GmbH
  5. * Copyright 1988, 1989, 1991, 1992 by Carnegie Mellon University
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. *
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in the
  15. * documentation and/or other materials provided with the distribution.
  16. * 3. Neither the name of the copyright holders nor the names of
  17. * contributors may be used to endorse or promote products derived
  18. * from this software without specific prior written permission.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  23. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  24. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  25. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  26. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  27. * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  28. * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  29. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  30. * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. * SUCH DAMAGE.
  32. *
  33. * For additional information see http://www.ethernut.de/
  34. */
  35. /*!
  36. * \file pro/snmp_api.h
  37. * \brief SNMP API functions.
  38. *
  39. * \verbatim
  40. * $Id: snmp_api.h 4473 2012-08-20 15:12:45Z haraldkipp $
  41. * \endverbatim
  42. */
  43. #include <pro/asn1.h>
  44. /*!
  45. * \addtogroup xgSNMP
  46. */
  47. /*@{*/
  48. #define SNMP_MAX_MSG_SIZE 1472 /* ethernet MTU minus IP/UDP header */
  49. /*
  50. * SNMP statistic counters.
  51. */
  52. #define SNMP_STAT_INPKTS 0
  53. #define SNMP_STAT_OUTPKTS 1
  54. #define SNMP_STAT_INBADVERSIONS 2
  55. #define SNMP_STAT_INBADCOMMUNITYNAMES 3
  56. #define SNMP_STAT_INBADCOMMUNITYUSES 4
  57. #define SNMP_STAT_INASNPARSEERRS 5
  58. #define SNMP_STAT_INTOOBIGS 6
  59. #define SNMP_STAT_INNOSUCHNAMES 7
  60. #define SNMP_STAT_INBADVALUES 8
  61. #define SNMP_STAT_INREADONLYS 9
  62. #define SNMP_STAT_INGENERRS 10
  63. #define SNMP_STAT_INTOTALREQVARS 11
  64. #define SNMP_STAT_INTOTALSETVARS 12
  65. #define SNMP_STAT_INGETREQUESTS 13
  66. #define SNMP_STAT_INGETNEXTS 14
  67. #define SNMP_STAT_INSETREQUESTS 15
  68. #define SNMP_STAT_INGETRESPONSES 16
  69. #define SNMP_STAT_INTRAPS 17
  70. #define SNMP_STAT_OUTTOOBIGS 18
  71. #define SNMP_STAT_OUTNOSUCHNAMES 19
  72. #define SNMP_STAT_OUTBADVALUES 20
  73. #define SNMP_STAT_OUTGENERRS 21
  74. #define SNMP_STAT_OUTGETREQUESTS 22
  75. #define SNMP_STAT_OUTGETNEXTS 23
  76. #define SNMP_STAT_OUTSETREQUESTS 24
  77. #define SNMP_STAT_OUTGETRESPONSES 25
  78. #define SNMP_STAT_OUTTRAPS 26
  79. #define SNMP_STAT_ENABLEAUTHENTRAPS 27
  80. #define SNMP_STAT_MAX 28
  81. /*@}*/
  82. extern int SnmpOidCmp(const OID *, size_t, const OID *, size_t);
  83. extern int SnmpOidLenCmp(const OID *name1, const OID *name2, size_t len);
  84. extern int SnmpOidTreeCmp(const OID *, size_t, const OID *, size_t);
  85. extern int SnmpOidCmpIdx(const OID *name1, size_t len1, const OID *name2, size_t len2, OID index);
  86. extern int SnmpOidEquals(const OID *, size_t, const OID *, size_t);
  87. extern void SnmpStatsInc(int);
  88. extern uint32_t SnmpStatsGet(int);
  89. extern void SnmpStatsSet(int, uint32_t);
  90. #endif