aboutsummaryrefslogtreecommitdiff
path: root/libsylph
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2014-03-24 03:49:44 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2014-03-24 03:49:44 +0000
commitefc57958a1bcb630e29f3600bedee4073ecf6359 (patch)
treec9371ce280ebd9d7d1b87e4afdfe2bc122bfc8e3 /libsylph
parent4135395d23758c2f3312dc40232363546c1b95d8 (diff)
libsylph/ssl_hostname_validation.h: added include guard.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3364 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph')
-rw-r--r--libsylph/ssl_hostname_validation.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/libsylph/ssl_hostname_validation.h b/libsylph/ssl_hostname_validation.h
index beade37f..4a24ae3c 100644
--- a/libsylph/ssl_hostname_validation.h
+++ b/libsylph/ssl_hostname_validation.h
@@ -28,6 +28,17 @@
* Modified naming convention to match LibSylph.
*
*/
+
+#ifndef __SSL_HOSTNAME_VALIDATION_H__
+#define __SSL_HOSTNAME_VALIDATION_H__
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#if USE_SSL
+
+#include <openssl/x509.h>
typedef enum {
SSL_HOSTNAME_MATCH_FOUND,
@@ -49,3 +60,7 @@ typedef enum {
* Returns Error if there was an error.
*/
SSLHostnameValidationResult ssl_validate_hostname(const char *hostname, const X509 *server_cert);
+
+#endif /* USE_SSL */
+
+#endif /* __SSL_HOSTNAME_VALIDATION_H__ */