summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2004-08-24 12:35:56 +0000
committerSimon Josefsson <simon@josefsson.org>2004-08-24 12:35:56 +0000
commit3840497c0fe14cace74c73f794af758aaae5e385 (patch)
treeeb7171d3ac917e26d143715d0e1a59eec505536d /includes
parente51d311d30e3b456f91651451761f78c1e98ab5e (diff)
downloadgnutls-3840497c0fe14cace74c73f794af758aaae5e385.tar.gz
Make gtk-doc happy.
Diffstat (limited to 'includes')
-rw-r--r--includes/gnutls/openssl.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/includes/gnutls/openssl.h b/includes/gnutls/openssl.h
index eeb7161121..386c214310 100644
--- a/includes/gnutls/openssl.h
+++ b/includes/gnutls/openssl.h
@@ -88,7 +88,7 @@ typedef struct {
typedef gnutls_x509_dn X509_NAME;
typedef gnutls_datum_t X509;
-struct _SSL;
+typedef struct _SSL SSL;
typedef struct
{
@@ -117,7 +117,7 @@ typedef struct _BIO
typedef struct
{
- struct _SSL *ssl;
+ SSL *ssl;
int error;
const gnutls_datum_t *cert_list;
#define current_cert cert_list
@@ -139,10 +139,9 @@ typedef struct _SSL_CTX
} SSL_CTX;
-typedef struct _SSL
+struct _SSL
{
gnutls_session_t gnutls_state;
-#define rbio gnutls_state
gnutls_certificate_client_credentials gnutls_cred;
@@ -159,7 +158,9 @@ typedef struct _SSL
gnutls_transport_ptr_t rfd;
gnutls_transport_ptr_t wfd;
-} SSL;
+};
+
+#define rbio gnutls_state
typedef struct
{