global.h 924 Bytes
Newer Older
1
/*
Edward Thomson committed
2
 * Copyright (C) the libgit2 contributors. All rights reserved.
3 4 5 6 7 8 9
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
 */
#ifndef INCLUDE_global_h__
#define INCLUDE_global_h__

10
#include "common.h"
11
#include "mwindow.h"
12
#include "hash.h"
13 14

typedef struct {
15 16
	git_error *last_error;
	git_error error_t;
17
	git_buf error_buf;
18
	char oid_fmt[GIT_OID_HEXSZ+1];
19 20
} git_global_st;

21
#ifdef GIT_OPENSSL
22 23 24 25
# include <openssl/ssl.h>
extern SSL_CTX *git__ssl_ctx;
#endif

26 27
git_global_st *git__global_state(void);

28 29
extern git_mutex git__mwindow_mutex;

30 31
#define GIT_GLOBAL (git__global_state())

32 33 34 35
typedef void (*git_global_shutdown_fn)(void);

extern void git__on_shutdown(git_global_shutdown_fn callback);

36
extern void git__free_tls_data(void);
37

38
extern const char *git_libgit2__user_agent(void);
39
extern const char *git_libgit2__ssl_ciphers(void);
40

41
#endif