~paulliu/ubuntu/quantal/freerdp/fixext

« back to all changes in this revision

Viewing changes to asn1/TSRequest.c

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2012-01-31 10:02:14 UTC
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: package-import@ubuntu.com-20120131100214-zvig71djj2sqgq22
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Generated by asn1c-0.9.22.1409 (http://lionet.info/asn1c)
3
 
 * From ASN.1 module "CREDSSP"
4
 
 *      found in "credssp.asn1"
5
 
 *      `asn1c -fnative-types -fskeletons-copy -fcompound-names`
6
 
 */
7
 
 
8
 
#include <asn_internal.h>
9
 
 
10
 
#include "TSRequest.h"
11
 
 
12
 
static asn_TYPE_member_t asn_MBR_TSRequest_1[] = {
13
 
        { ATF_NOFLAGS, 0, offsetof(struct TSRequest, version),
14
 
                (ASN_TAG_CLASS_CONTEXT | (0 << 2)),
15
 
                +1,     /* EXPLICIT tag at current level */
16
 
                &asn_DEF_NativeInteger,
17
 
                0,      /* Defer constraints checking to the member type */
18
 
                0,      /* PER is not compiled, use -gen-PER */
19
 
                0,
20
 
                "version"
21
 
                },
22
 
        { ATF_POINTER, 3, offsetof(struct TSRequest, negoTokens),
23
 
                (ASN_TAG_CLASS_CONTEXT | (1 << 2)),
24
 
                +1,     /* EXPLICIT tag at current level */
25
 
                &asn_DEF_NegoData,
26
 
                0,      /* Defer constraints checking to the member type */
27
 
                0,      /* PER is not compiled, use -gen-PER */
28
 
                0,
29
 
                "negoTokens"
30
 
                },
31
 
        { ATF_POINTER, 2, offsetof(struct TSRequest, authInfo),
32
 
                (ASN_TAG_CLASS_CONTEXT | (2 << 2)),
33
 
                +1,     /* EXPLICIT tag at current level */
34
 
                &asn_DEF_OCTET_STRING,
35
 
                0,      /* Defer constraints checking to the member type */
36
 
                0,      /* PER is not compiled, use -gen-PER */
37
 
                0,
38
 
                "authInfo"
39
 
                },
40
 
        { ATF_POINTER, 1, offsetof(struct TSRequest, pubKeyAuth),
41
 
                (ASN_TAG_CLASS_CONTEXT | (3 << 2)),
42
 
                +1,     /* EXPLICIT tag at current level */
43
 
                &asn_DEF_OCTET_STRING,
44
 
                0,      /* Defer constraints checking to the member type */
45
 
                0,      /* PER is not compiled, use -gen-PER */
46
 
                0,
47
 
                "pubKeyAuth"
48
 
                },
49
 
};
50
 
static ber_tlv_tag_t asn_DEF_TSRequest_tags_1[] = {
51
 
        (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
52
 
};
53
 
static asn_TYPE_tag2member_t asn_MAP_TSRequest_tag2el_1[] = {
54
 
    { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* version at 9 */
55
 
    { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* negoTokens at 10 */
56
 
    { (ASN_TAG_CLASS_CONTEXT | (2 << 2)), 2, 0, 0 }, /* authInfo at 11 */
57
 
    { (ASN_TAG_CLASS_CONTEXT | (3 << 2)), 3, 0, 0 } /* pubKeyAuth at 12 */
58
 
};
59
 
static asn_SEQUENCE_specifics_t asn_SPC_TSRequest_specs_1 = {
60
 
        sizeof(struct TSRequest),
61
 
        offsetof(struct TSRequest, _asn_ctx),
62
 
        asn_MAP_TSRequest_tag2el_1,
63
 
        4,      /* Count of tags in the map */
64
 
        0, 0, 0,        /* Optional elements (not needed) */
65
 
        -1,     /* Start extensions */
66
 
        -1      /* Stop extensions */
67
 
};
68
 
asn_TYPE_descriptor_t asn_DEF_TSRequest = {
69
 
        "TSRequest",
70
 
        "TSRequest",
71
 
        SEQUENCE_free,
72
 
        SEQUENCE_print,
73
 
        SEQUENCE_constraint,
74
 
        SEQUENCE_decode_ber,
75
 
        SEQUENCE_encode_der,
76
 
        SEQUENCE_decode_xer,
77
 
        SEQUENCE_encode_xer,
78
 
        0, 0,   /* No PER support, use "-gen-PER" to enable */
79
 
        0,      /* Use generic outmost tag fetcher */
80
 
        asn_DEF_TSRequest_tags_1,
81
 
        sizeof(asn_DEF_TSRequest_tags_1)
82
 
                /sizeof(asn_DEF_TSRequest_tags_1[0]), /* 1 */
83
 
        asn_DEF_TSRequest_tags_1,       /* Same as above */
84
 
        sizeof(asn_DEF_TSRequest_tags_1)
85
 
                /sizeof(asn_DEF_TSRequest_tags_1[0]), /* 1 */
86
 
        0,      /* No PER visible constraints */
87
 
        asn_MBR_TSRequest_1,
88
 
        4,      /* Elements count */
89
 
        &asn_SPC_TSRequest_specs_1      /* Additional specs */
90
 
};
91