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

代理服务器

开发平台:

Unix_Linux

  1. #ifndef _SNMP_ASN1_H_
  2. #define _SNMP_ASN1_H_
  3. /*
  4.  * Definitions for Abstract Syntax Notation One, ASN.1
  5.  * As defined in ISO/IS 8824 and ISO/IS 8825
  6.  *
  7.  */
  8. /**********************************************************************
  9.  *
  10.  *           Copyright 1997 by Carnegie Mellon University
  11.  * 
  12.  *                       All Rights Reserved
  13.  * 
  14.  * Permission to use, copy, modify, and distribute this software and its
  15.  * documentation for any purpose and without fee is hereby granted,
  16.  * provided that the above copyright notice appear in all copies and that
  17.  * both that copyright notice and this permission notice appear in
  18.  * supporting documentation, and that the name of CMU not be
  19.  * used in advertising or publicity pertaining to distribution of the
  20.  * software without specific, written prior permission.
  21.  * 
  22.  * CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  23.  * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  24.  * CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  25.  * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  26.  * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  27.  * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  28.  * SOFTWARE.
  29.  * 
  30.  * $Id: asn1.h,v 1.10 1998/04/08 00:33:45 wessels Exp $
  31.  * 
  32.  **********************************************************************/
  33. #ifndef EIGHTBIT_SUBIDS
  34. typedef u_int oid;
  35. #define MAX_SUBID   0xFFFFFFFF
  36. #else
  37. typedef u_char oid;
  38. #define MAX_SUBID   0xFF
  39. #endif
  40. #define MAX_OID_LEN     128 /* max subid's in an oid, per SNMP spec. */
  41. #define ASN_BOOLEAN     (0x01)
  42. #define ASN_INTEGER     (0x02)
  43. #define ASN_BIT_STR     (0x03)
  44. #define ASN_OCTET_STR     (0x04)
  45. #define ASN_NULL     (0x05)
  46. #define ASN_OBJECT_ID     (0x06)
  47. #define ASN_SEQUENCE     (0x10)
  48. #define ASN_SET     (0x11)
  49. #define ASN_UNIVERSAL     (0x00)
  50. #define ASN_APPLICATION     (0x40)
  51. #define ASN_CONTEXT     (0x80)
  52. #define ASN_PRIVATE     (0xC0)
  53. #define ASN_PRIMITIVE     (0x00)
  54. #define ASN_CONSTRUCTOR     (0x20)
  55. #define ASN_LONG_LEN     (0x80)
  56. #define ASN_EXTENSION_ID    (0x1F)
  57. #define ASN_BIT8     (0x80)
  58. #define IS_CONSTRUCTOR(byte) ((byte) & ASN_CONSTRUCTOR)
  59. #define IS_EXTENSION_ID(byte) (((byte) & ASN_EXTENSION_ID) == ASN_EXTENSION_ID)
  60. #ifdef __cplusplus
  61. extern "C" {
  62. #endif
  63.     u_char *asn_build_header(u_char *, int *, u_char, int);
  64.     u_char *asn_parse_int(u_char *, int *, u_char *, int *, int);
  65.     u_char *asn_parse_unsigned_int(u_char *, int *, u_char *, u_int *, int);
  66.     u_char *asn_build_int(u_char *, int *, u_char, int *, int);
  67.     u_char *asn_build_unsigned_int(u_char *, int *, u_char, u_int *, int);
  68.     u_char *asn_parse_string(u_char *, int *, u_char *, u_char *, int *);
  69.     u_char *asn_build_string(u_char *, int *, u_char, u_char *, int);
  70.     u_char *asn_parse_header(u_char *, int *, u_char *);
  71.     u_char *asn_build_header_with_truth(u_char *, int *, u_char, int, int);
  72.     u_char *asn_parse_length(u_char *, u_int *);
  73.     u_char *asn_build_length(u_char *, int *, int, int);
  74.     u_char *asn_parse_objid(u_char *, int *, u_char *, oid *, int *);
  75.     u_char *asn_build_objid(u_char *, int *, u_char, oid *, int);
  76.     u_char *asn_parse_null(u_char *, int *, u_char *);
  77.     u_char *asn_build_null(u_char *, int *, u_char);
  78. #if 0
  79.     u_char *asn_parse_bitstring(u_char *, int *, u_char *, u_char *, int *);
  80.     u_char *asn_build_bitstring(u_char *, int *, u_char, u_char *, int);
  81. #endif
  82.     u_char *asn_build_exception(u_char *, int *, u_char);
  83. #ifdef __cplusplus
  84. }
  85. #endif
  86. #endif /* _SNMP_ASN1_H_ */