From 2aee4642ef9c0cffcebc443e81a706f3e458906f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Sun, 31 Aug 2014 23:16:19 +0200 Subject: [PATCH] transport: move the cert type enum to types.h This should make the mingw compiler happy. --- include/git2/transport.h | 16 ---------------- include/git2/types.h | 17 ++++++++++++++++- 2 files changed, 16 insertions(+), 17 deletions(-) diff --git a/include/git2/transport.h b/include/git2/transport.h index 7365cffdf..06d090f4a 100644 --- a/include/git2/transport.h +++ b/include/git2/transport.h @@ -20,22 +20,6 @@ */ GIT_BEGIN_DECL -/** - * Type of host certificate structure that is passed to the check callback - */ -typedef enum git_cert_t { - /** - * The `data` argument to the callback will be a pointer to - * the DER-encoded data. - */ - GIT_CERT_X509, - /** - * The `data` argument to the callback will be a pointer to a - * `git_cert_hostkey` structure. - */ - GIT_CERT_HOSTKEY_LIBSSH2, -} git_cert_t; - /** * Hostkey information taken from libssh2 */ diff --git a/include/git2/types.h b/include/git2/types.h index 51f058867..3544037a4 100644 --- a/include/git2/types.h +++ b/include/git2/types.h @@ -254,7 +254,22 @@ typedef int (*git_transfer_progress_cb)(const git_transfer_progress *stats, void typedef int (*git_transport_message_cb)(const char *str, int len, void *payload); -typedef enum git_cert_t git_cert_t; + +/** + * Type of host certificate structure that is passed to the check callback + */ +typedef enum git_cert_t { + /** + * The `data` argument to the callback will be a pointer to + * the DER-encoded data. + */ + GIT_CERT_X509, + /** + * The `data` argument to the callback will be a pointer to a + * `git_cert_hostkey` structure. + */ + GIT_CERT_HOSTKEY_LIBSSH2, +} git_cert_t; /** * Callback for the user's custom certificate checks.