GOPEN handles UNIX seqpacket sockets
[socat.git] / xio-openssl.h
blobdae65f961e6c1a2d60bd2d40454733d7f2fc97f6
1 /* source: xio-openssl.h */
2 /* Copyright Gerhard Rieger and contributors (see file CHANGES) */
3 /* Published under the GNU General Public License V.2, see file COPYING */
5 #ifndef __xio_openssl_included
6 #define __xio_openssl_included 1
8 #if WITH_OPENSSL /* make this address configure dependend */
10 #define SSLIO_BASE 0x53530000 /* "SSxx" */
11 #define SSLIO_MASK 0xffff0000
13 extern const struct addrdesc addr_openssl;
14 extern const struct addrdesc addr_openssl_listen;
16 extern const struct optdesc opt_openssl_cipherlist;
17 extern const struct optdesc opt_openssl_method;
18 extern const struct optdesc opt_openssl_min_proto_version;
19 extern const struct optdesc opt_openssl_max_proto_version;
20 extern const struct optdesc opt_openssl_verify;
21 extern const struct optdesc opt_openssl_certificate;
22 extern const struct optdesc opt_openssl_key;
23 extern const struct optdesc opt_openssl_dhparam;
24 extern const struct optdesc opt_openssl_cafile;
25 extern const struct optdesc opt_openssl_capath;
26 extern const struct optdesc opt_openssl_egd;
27 extern const struct optdesc opt_openssl_pseudo;
28 #if OPENSSL_VERSION_NUMBER >= 0x00908000L
29 extern const struct optdesc opt_openssl_compress;
30 #endif
31 #if WITH_FIPS
32 extern const struct optdesc opt_openssl_fips;
33 #endif
34 extern const struct optdesc opt_openssl_commonname;
36 extern int
37 _xioopen_openssl_prepare(struct opt *opts, struct single *xfd,
38 bool server, bool *opt_ver, const char *opt_cert,
39 SSL_CTX **ctx);
40 extern int
41 _xioopen_openssl_connect(struct single *xfd, bool opt_ver,
42 const char *opt_commonname,
43 SSL_CTX *ctx, int level);
44 extern int
45 _xioopen_openssl_listen(struct single *xfd, bool opt_ver,
46 const char *opt_commonname,
47 SSL_CTX *ctx, int level);
48 extern int xioclose_openssl(xiofile_t *xfd);
49 extern int xioshutdown_openssl(xiofile_t *xfd, int how);
50 extern ssize_t xioread_openssl(struct single *file, void *buff, size_t bufsiz);
51 extern ssize_t xiopending_openssl(struct single *pipe);
52 extern ssize_t xiowrite_openssl(struct single *file, const void *buff, size_t bufsiz);
54 #if WITH_FIPS
55 extern int xio_reset_fips_mode(void);
56 #endif /* WITH_FIPS */
58 #endif /* WITH_OPENSSL */
60 #endif /* !defined(__xio_openssl_included) */