asn_oid.h

来自「ATM 网 络 协 议 实 现 源 代 码」· C头文件 代码 · 共 68 行

H
68
字号
/* * asn_oid.h * *  this file depends on asn_octs.h * MS 92 * Copyright (C) 1992 Michael Sample and the University of British Columbia * * This library is free software; you can redistribute it and/or * modify it provided that this copyright/license information is retained * in original form. * * If you modify this file, you must clearly indicate your changes. * * This source code is distributed in the hope that it will be * useful, but WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * */#ifndef _asn_oid_h_#define _asn_oid_h_#include "asn_octs.h"typedef AsnOcts AsnOid;  /* standard oid type  */#define ASNOID_PRESENT(aoid) ASNOCTS_PRESENT(aoid)AsnLen BEncAsnOid PROTO((BUF_TYPE b, AsnOid* data));void BDecAsnOid PROTO((BUF_TYPE b, AsnOid* result, AsnLen* bytesDecoded,                       ENV_TYPE env));#define BEncAsnOidContent(b, oid)   BEncAsnOctsContent(b, oid)void BDecAsnOidContent PROTO((BUF_TYPE b,                            AsnTag tag,                            AsnLen len,                            AsnOid*  result,                            AsnLen* bytesDecoded,                            ENV_TYPE env));#define FreeAsnOid FreeAsnOctsvoid PrintAsnOid PROTO((FILE* f, AsnOid* b, unsigned short int indent));#define AsnOidsEquiv(o1, o2) AsnOctsEquiv(o1, o2)/* linked oid type that may be easier to use in some circumstances */#define NULL_OID_ARCNUM -1typedef struct OID{    struct OID* next;    long int arcNum;} OID;AsnLen EncodedOidLen PROTO((OID* oid));void BuildEncodedOid PROTO( (OID* oid, AsnOid* result));void UnbuildEncodedOid PROTO( (AsnOid* eoid, OID** result));#endif /* conditional include */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?