Blame src/transports/auth_negotiate.h

Packit Service 20376f
/*
Packit Service 20376f
 * Copyright (C) the libgit2 contributors. All rights reserved.
Packit Service 20376f
 *
Packit Service 20376f
 * This file is part of libgit2, distributed under the GNU GPL v2 with
Packit Service 20376f
 * a Linking Exception. For full terms see the included COPYING file.
Packit Service 20376f
 */
Packit Service 20376f
Packit Service 20376f
#ifndef INCLUDE_auth_negotiate_h__
Packit Service 20376f
#define INCLUDE_auth_negotiate_h__
Packit Service 20376f
Packit Service 20376f
#include "git2.h"
Packit Service 20376f
#include "auth.h"
Packit Service 20376f
Packit Service 20376f
#ifdef GIT_GSSAPI
Packit Service 20376f
Packit Service 20376f
extern int git_http_auth_negotiate(
Packit Service 20376f
	git_http_auth_context **out,
Packit Service 20376f
	const gitno_connection_data *connection_data);
Packit Service 20376f
Packit Service 20376f
#else
Packit Service 20376f
Packit Service 20376f
#define git_http_auth_negotiate git_http_auth_dummy
Packit Service 20376f
Packit Service 20376f
#endif /* GIT_GSSAPI */
Packit Service 20376f
Packit Service 20376f
#endif
Packit Service 20376f