mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-04 19:50:19 +00:00

For the transition, http is going to keep its own logic until the git/common code catches up with the implied multi_ack that http has. This also has the side-effect of making the code cleaner and more correct regardingt he protocol.
66 lines
1.3 KiB
C
66 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2009-2012 the libgit2 contributors
|
|
*
|
|
* 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_common_h__
|
|
#define INCLUDE_common_h__
|
|
|
|
#include "git2/common.h"
|
|
#include "cc-compat.h"
|
|
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <limits.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
|
|
#ifdef GIT_WIN32
|
|
|
|
# include <io.h>
|
|
# include <direct.h>
|
|
# include <winsock2.h>
|
|
# include <windows.h>
|
|
# include "win32/msvc-compat.h"
|
|
# include "win32/mingw-compat.h"
|
|
# ifdef GIT_THREADS
|
|
# include "win32/pthread.h"
|
|
#endif
|
|
|
|
# define snprintf _snprintf
|
|
|
|
#else
|
|
# include <unistd.h>
|
|
|
|
# ifdef GIT_THREADS
|
|
# include <pthread.h>
|
|
# endif
|
|
#endif
|
|
|
|
#include "git2/types.h"
|
|
#include "git2/errors.h"
|
|
#include "thread-utils.h"
|
|
#include "bswap.h"
|
|
|
|
#include <regex.h>
|
|
|
|
#define GITERR_CHECK_ALLOC(ptr) if (ptr == NULL) { return -1; }
|
|
|
|
void giterr_set_oom(void);
|
|
void giterr_set(int error_class, const char *string, ...);
|
|
void giterr_clear(void);
|
|
void giterr_set_str(int error_class, const char *string);
|
|
void giterr_set_regex(const regex_t *regex, int error_code);
|
|
|
|
#include "util.h"
|
|
|
|
typedef struct git_transport git_transport;
|
|
typedef struct gitno_buffer gitno_buffer;
|
|
|
|
#endif /* INCLUDE_common_h__ */
|