~ubuntu-branches/ubuntu/raring/freerdp/raring-proposed

« back to all changes in this revision

Viewing changes to asn1/NegotiationToken.h

  • 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
 
 * Generated by asn1c-0.9.22.1409 (http://lionet.info/asn1c)
3
 
 * From ASN.1 module "SPNEGO"
4
 
 *      found in "spnego.asn1"
5
 
 *      `asn1c -fnative-types -fskeletons-copy -fcompound-names`
6
 
 */
7
 
 
8
 
#ifndef _NegotiationToken_H_
9
 
#define _NegotiationToken_H_
10
 
 
11
 
 
12
 
#include <asn_application.h>
13
 
 
14
 
/* Including external dependencies */
15
 
#include "NegTokenInit.h"
16
 
#include "NegTokenResp.h"
17
 
#include <constr_CHOICE.h>
18
 
 
19
 
#ifdef __cplusplus
20
 
extern "C" {
21
 
#endif
22
 
 
23
 
/* Dependencies */
24
 
typedef enum NegotiationToken_PR {
25
 
        NegotiationToken_PR_NOTHING,    /* No components present */
26
 
        NegotiationToken_PR_negTokenInit,
27
 
        NegotiationToken_PR_negTokenResp
28
 
} NegotiationToken_PR;
29
 
 
30
 
/* NegotiationToken */
31
 
typedef struct NegotiationToken {
32
 
        NegotiationToken_PR present;
33
 
        union NegotiationToken_u {
34
 
                NegTokenInit_t   negTokenInit;
35
 
                NegTokenResp_t   negTokenResp;
36
 
        } choice;
37
 
        
38
 
        /* Context for parsing across buffer boundaries */
39
 
        asn_struct_ctx_t _asn_ctx;
40
 
} NegotiationToken_t;
41
 
 
42
 
/* Implementation */
43
 
extern asn_TYPE_descriptor_t asn_DEF_NegotiationToken;
44
 
 
45
 
#ifdef __cplusplus
46
 
}
47
 
#endif
48
 
 
49
 
#endif  /* _NegotiationToken_H_ */