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

« back to all changes in this revision

Viewing changes to libfreerdp/iso.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
 
/* -*- c-basic-offset: 8 -*-
2
 
   freerdp: A Remote Desktop Protocol client.
3
 
   Protocol services - ISO layer
4
 
   Copyright (C) Jay Sorg 2009
5
 
 
6
 
   This program is free software; you can redistribute it and/or modify
7
 
   it under the terms of the GNU General Public License as published by
8
 
   the Free Software Foundation; either version 2 of the License, or
9
 
   (at your option) any later version.
10
 
 
11
 
   This program is distributed in the hope that it will be useful,
12
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
   GNU General Public License for more details.
15
 
 
16
 
   You should have received a copy of the GNU General Public License
17
 
   along with this program; if not, write to the Free Software
18
 
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
 
*/
20
 
 
21
 
#include "stream.h"
22
 
#include "types_ui.h"
23
 
 
24
 
#ifndef __ISO_H
25
 
#define __ISO_H
26
 
 
27
 
struct rdp_iso
28
 
{
29
 
        struct rdp_mcs * mcs;
30
 
        struct rdp_tcp * tcp;
31
 
};
32
 
typedef struct rdp_iso rdpIso;
33
 
 
34
 
enum iso_recv_type
35
 
{
36
 
        ISO_RECV_X224,
37
 
        ISO_RECV_FAST_PATH,
38
 
        ISO_RECV_FAST_PATH_ENCRYPTED
39
 
};
40
 
typedef enum iso_recv_type isoRecvType;
41
 
 
42
 
STREAM
43
 
iso_init(rdpIso * iso, int length);
44
 
STREAM
45
 
iso_fp_init(rdpIso * iso, int length);
46
 
void
47
 
iso_send(rdpIso * iso, STREAM s);
48
 
void
49
 
iso_fp_send(rdpIso * iso, STREAM s, uint32 flags);
50
 
STREAM
51
 
iso_recv(rdpIso * iso, isoRecvType * ptype);
52
 
RD_BOOL
53
 
iso_connect(rdpIso * iso, char * server, char * username, int port);
54
 
void
55
 
iso_disconnect(rdpIso * iso);
56
 
rdpIso *
57
 
iso_new(struct rdp_mcs * mcs);
58
 
void
59
 
iso_free(rdpIso * iso);
60
 
 
61
 
#endif