parse.h
上传用户:liugui
上传日期:2007-01-04
资源大小:822k
文件大小:3k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: parse.h,v 1.8 1998/09/23 17:19:59 wessels Exp $
  3.  */
  4. #ifndef _HAVE_PARSE_H_
  5. #define _HAVE_PARSE_H_
  6. /***********************************************************
  7. Copyright 1989 by Carnegie Mellon University
  8.                       All Rights Reserved
  9. Permission to use, copy, modify, and distribute this software and its 
  10. documentation for any purpose and without fee is hereby granted, 
  11. provided that the above copyright notice appear in all copies and that
  12. both that copyright notice and this permission notice appear in 
  13. supporting documentation, and that the name of CMU not be
  14. used in advertising or publicity pertaining to distribution of the
  15. software without specific, written prior permission.  
  16. CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  17. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  18. CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  19. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  20. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  21. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  22. SOFTWARE.
  23. ******************************************************************/
  24. /*
  25.  * parse.h
  26.  */
  27. /*
  28.  * A linked list of tag-value pairs for enumerated integers.
  29.  */
  30. struct enum_list {
  31.     struct enum_list *next;
  32.     int value;
  33.     char *label;
  34. };
  35. /*
  36.  * A tree in the format of the tree structure of the MIB.
  37.  */
  38. struct snmp_mib_tree {
  39.     struct snmp_mib_tree *child_list; /* list of children of this node */
  40.     struct snmp_mib_tree *next_peer; /* Next node in list of peers */
  41.     struct snmp_mib_tree *parent;
  42.     char label[64]; /* This node's textual name */
  43.     u_int subid; /* This node's integer subidentifier */
  44.     int type; /* This node's object type */
  45.     struct enum_list *enums; /* (optional) list of enumerated integers (otherwise NULL) */
  46.     void (*printer) (); /* Value printing function */
  47. };
  48. /* non-aggregate types for tree end nodes */
  49. #define TYPE_OTHER     0
  50. #define TYPE_OBJID     1
  51. #define TYPE_OCTETSTR     2
  52. #define TYPE_INTEGER     3
  53. #define TYPE_NETADDR     4
  54. #define TYPE_IPADDR     5
  55. #define TYPE_COUNTER     6
  56. #define TYPE_GAUGE     7
  57. #define TYPE_TIMETICKS     8
  58. #define TYPE_OPAQUE             9
  59. #define TYPE_NULL     10
  60. #ifdef __cplusplus
  61. extern "C" {
  62. #endif
  63.     void init_mib(char *);
  64.     int read_objid(char *, oid *, int *);
  65.     void print_objid(oid *, int);
  66.     void sprint_objid(char *, oid *, int);
  67.     void print_variable(oid *, int, struct variable_list *);
  68.     void sprint_variable(char *, oid *, int, struct variable_list *);
  69.     void sprint_value(char *, oid *, int, struct variable_list *);
  70.     void print_value(oid *, int, struct variable_list *);
  71. /*void print_variable_list(struct variable_list *); */
  72. /*void print_variable_list_value(struct variable_list *); */
  73. /*void print_type(struct variable_list *); */
  74.     void print_oid_nums(oid *, int);
  75.     struct snmp_mib_tree *read_mib();
  76. #ifdef __cplusplus
  77. }
  78. #endif
  79. #endif /* _HAVE_PARSE_H_ */