/usr/include/titan/OER.hh is in eclipse-titan 6.3.1-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | /******************************************************************************
* Copyright (c) 2000-2017 Ericsson Telecom AB
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Szabo, Bence Janos
*
******************************************************************************/
#ifndef OER_HH
#define OER_HH
#include "Types.h"
#include "Vector.hh"
class TTCN_Buffer;
class ASN_BERdescriptor_t;
class ASN_Tag_t;
struct TTCN_OERdescriptor_t
{
int bytes;
boolean signed_;
int length;
boolean extendable;
int nr_of_root_comps;
// length of the eag int array
int eag_len;
// contains the start and end index of the extension groups, indexed from the
// index of last root component.
// {2 4} means that the 3rd and 4th element of the extensions are in a group.
// always contains even number of integers
const int * const eag;
int p_len;
// Contains the correct order of fields. (CER coding reorders fields)
// p[1] = 2 means that the reordered fields are not correct for OER coding,
// and the first field must be the second while coding in oer.
const int * const p;
};
struct OER_struct
{
OER_struct() : opentype_poses(0), pos(0) {}
Vector<size_t> opentype_poses;
size_t pos;
};
void encode_oer_length(size_t num_bytes, TTCN_Buffer& buf, boolean seof);
size_t decode_oer_length(TTCN_Buffer& buf, boolean seof);
void encode_oer_tag(const ASN_BERdescriptor_t& descr, TTCN_Buffer& buf);
ASN_Tag_t decode_oer_tag(TTCN_Buffer& buf);
extern const TTCN_OERdescriptor_t BOOLEAN_oer_;
extern const TTCN_OERdescriptor_t INTEGER_oer_;
extern const TTCN_OERdescriptor_t BITSTRING_oer_;
extern const TTCN_OERdescriptor_t OCTETSTRING_oer_;
extern const TTCN_OERdescriptor_t FLOAT_oer_;
extern const TTCN_OERdescriptor_t ASN_NULL_oer_;
extern const TTCN_OERdescriptor_t IA5String_oer_;
extern const TTCN_OERdescriptor_t VisibleString_oer_;
extern const TTCN_OERdescriptor_t NumericString_oer_;
extern const TTCN_OERdescriptor_t PrintableString_oer_;
extern const TTCN_OERdescriptor_t BMPString_oer_;
extern const TTCN_OERdescriptor_t UniversalString_oer_;
extern const TTCN_OERdescriptor_t UTF8String_oer_;
extern const TTCN_OERdescriptor_t TeletexString_oer_;
extern const TTCN_OERdescriptor_t VideotexString_oer_;
extern const TTCN_OERdescriptor_t GraphicString_oer_;
extern const TTCN_OERdescriptor_t GeneralString_oer_;
extern const TTCN_OERdescriptor_t OBJID_oer_;
extern const TTCN_OERdescriptor_t ASN_ROID_oer_;
extern const TTCN_OERdescriptor_t EMBEDDED_PDV_oer_;
extern const TTCN_OERdescriptor_t EXTERNAL_oer_;
extern const TTCN_OERdescriptor_t ObjectDescriptor_oer_;
#endif /* OER_HH */
|