~ubuntu-branches/ubuntu/gutsy/vnc4/gutsy

« back to all changes in this revision

Viewing changes to unix/xc/lib/zlib/infcodes.h

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2006-05-15 20:35:17 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060515203517-l4lre1ku942mn26k
Tags: 4.1.1+X4.3.0-10
* Correction of critical security issue. Thanks to Martin Kogler
  <e9925248@student.tuwien.ac.at> that informed me about the issue,
  and provided the patch.
  This flaw was originally found by Steve Wiseman of intelliadmin.com.
* Applied patch from Javier Kohen <jkohen@users.sourceforge.net> that
  inform the user that only 8 first characters of the password will
  actually be used when typing more than 8 characters, closes:
  #355619.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Xorg: infcodes.h,v 1.3 2000/08/17 19:46:47 cpqbld Exp $ */
 
2
 
 
3
/* infcodes.h -- header to use infcodes.c
 
4
 * Copyright (C) 1995-1998 Mark Adler
 
5
 * For conditions of distribution and use, see copyright notice in zlib.h 
 
6
 */
 
7
 
 
8
/* WARNING: this file should *not* be used by applications. It is
 
9
   part of the implementation of the compression library and is
 
10
   subject to change. Applications should only use zlib.h.
 
11
 */
 
12
 
 
13
struct inflate_codes_state;
 
14
typedef struct inflate_codes_state FAR inflate_codes_statef;
 
15
 
 
16
extern inflate_codes_statef *inflate_codes_new OF((
 
17
    uInt, uInt,
 
18
    inflate_huft *, inflate_huft *,
 
19
    z_streamp ));
 
20
 
 
21
extern int inflate_codes OF((
 
22
    inflate_blocks_statef *,
 
23
    z_streamp ,
 
24
    int));
 
25
 
 
26
extern void inflate_codes_free OF((
 
27
    inflate_codes_statef *,
 
28
    z_streamp ));
 
29