~ubuntu-branches/ubuntu/wily/freerdp/wily-proposed

« back to all changes in this revision

Viewing changes to asn1/GeneralString.c

  • Committer: Package Import Robot
  • Author(s): Martin Pitt, Jeremy Bicha, Jean-Louis Dupond, Martin Pitt
  • Date: 2012-01-31 10:02:14 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120131100214-jaok3uwvni7sqxth
Tags: 1.0.0-0git1
Upload current Debian packaging git to get this rolling for precise.

[ Jeremy Bicha ]
* New upstream release. Closes: #647498.
* Updated symbols and bumped soname
* debian/control:
  - Added new build dependencies
  - Bump Standards-Version to 3.9.2
* debian/source/format: Set to 3.0 (quilt)
* debian/rules: Turn on strict symbols checking
* debian/watch: Watch github

[ Jean-Louis Dupond ]
* debian/control: Updated homepage
* debian/copyright: Reflect upstream switch to the Apache license

[ Martin Pitt ]
* debian/libfreerdp0.symbols: Fix version number, should
  be 1.0~beta5, not 1.0-beta5.
* debian/control: Add libavcodec-dev build dependency, upstream build system
  checks for that. Thanks Jean-Louis Dupond!

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*-
2
 
 * Copyright (c) 2003 Lev Walkin <vlm@lionet.info>. All rights reserved.
3
 
 * Redistribution and modifications are permitted subject to BSD license.
4
 
 */
5
 
#include <asn_internal.h>
6
 
#include <GeneralString.h>
7
 
 
8
 
/*
9
 
 * GeneralString basic type description.
10
 
 */
11
 
static ber_tlv_tag_t asn_DEF_GeneralString_tags[] = {
12
 
        (ASN_TAG_CLASS_UNIVERSAL | (27 << 2)),  /* [UNIVERSAL 27] IMPLICIT ...*/
13
 
        (ASN_TAG_CLASS_UNIVERSAL | (4 << 2))    /* ... OCTET STRING */
14
 
};
15
 
asn_TYPE_descriptor_t asn_DEF_GeneralString = {
16
 
        "GeneralString",
17
 
        "GeneralString",
18
 
        OCTET_STRING_free,
19
 
        OCTET_STRING_print,         /* non-ascii string */
20
 
        asn_generic_unknown_constraint,
21
 
        OCTET_STRING_decode_ber,    /* Implemented in terms of OCTET STRING */
22
 
        OCTET_STRING_encode_der,
23
 
        OCTET_STRING_decode_xer_hex,
24
 
        OCTET_STRING_encode_xer,
25
 
        OCTET_STRING_decode_uper,    /* Implemented in terms of OCTET STRING */
26
 
        OCTET_STRING_encode_uper,
27
 
        0, /* Use generic outmost tag fetcher */
28
 
        asn_DEF_GeneralString_tags,
29
 
        sizeof(asn_DEF_GeneralString_tags)
30
 
          / sizeof(asn_DEF_GeneralString_tags[0]) - 1,
31
 
        asn_DEF_GeneralString_tags,
32
 
        sizeof(asn_DEF_GeneralString_tags)
33
 
          / sizeof(asn_DEF_GeneralString_tags[0]),
34
 
        0,      /* No PER visible constraints */
35
 
        0, 0,   /* No members */
36
 
        0       /* No specifics */
37
 
};
38