~ubuntu-branches/ubuntu/lucid/openssl/lucid-proposed

« back to all changes in this revision

Viewing changes to crypto/comp/comp.h

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2009-06-13 18:15:46 UTC
  • mto: (11.1.5 squeeze)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: james.westby@ubuntu.com-20090613181546-vbfntai3b009dl1u
Tags: upstream-0.9.8k
ImportĀ upstreamĀ versionĀ 0.9.8k

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
        unsigned char *in, int ilen);
48
48
COMP_METHOD *COMP_rle(void );
49
49
COMP_METHOD *COMP_zlib(void );
 
50
void COMP_zlib_cleanup(void);
 
51
 
 
52
#ifdef HEADER_BIO_H
 
53
#ifdef ZLIB
 
54
BIO_METHOD *BIO_f_zlib(void);
 
55
#endif
 
56
#endif
50
57
 
51
58
/* BEGIN ERROR CODES */
52
59
/* The following lines are auto generated by the script mkerr.pl. Any changes
57
64
/* Error codes for the COMP functions. */
58
65
 
59
66
/* Function codes. */
 
67
#define COMP_F_BIO_ZLIB_FLUSH                            99
 
68
#define COMP_F_BIO_ZLIB_NEW                              100
 
69
#define COMP_F_BIO_ZLIB_READ                             101
 
70
#define COMP_F_BIO_ZLIB_WRITE                            102
60
71
 
61
72
/* Reason codes. */
 
73
#define COMP_R_ZLIB_DEFLATE_ERROR                        99
 
74
#define COMP_R_ZLIB_INFLATE_ERROR                        100
 
75
#define COMP_R_ZLIB_NOT_SUPPORTED                        101
62
76
 
63
77
#ifdef  __cplusplus
64
78
}