diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2014-07-31 16:46:58 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2014-07-31 16:46:58 -0700 |
commit | 386512c0ed1a342f261ac0ea821b4f6d42130d56 (patch) | |
tree | 62e0e675c732d08d4bec1191d8f3eafa149a3ca9 /common/trans.h | |
parent | 4ef60f163df23f1a5331f8902ecab19c821cc60b (diff) | |
download | xrdp-proprietary-386512c0ed1a342f261ac0ea821b4f6d42130d56.tar.gz xrdp-proprietary-386512c0ed1a342f261ac0ea821b4f6d42130d56.zip |
common: fix some warning for TLS
Diffstat (limited to 'common/trans.h')
-rw-r--r-- | common/trans.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/common/trans.h b/common/trans.h index c28d420b..c5fe49e6 100644 --- a/common/trans.h +++ b/common/trans.h @@ -23,7 +23,6 @@ #include "arch.h" #include "parse.h" -#include <openssl/ssl.h> #define TRANS_MODE_TCP 1 #define TRANS_MODE_UNIX 2 @@ -72,8 +71,8 @@ struct trans /* xrdp_tls */ struct xrdp_tls { - SSL *ssl; - SSL_CTX *ctx; + void *ssl; /* SSL * */ + void *ctx; /* SSL_CTX * */ char *cert; char *key; struct trans *trans; |