Some checks failed
android / build (arm64-v8a) (push) Failing after 20s
android / build (armeabi-v7a) (push) Failing after 22s
android / build (x86) (push) Failing after 19s
android / build (x86_64) (push) Failing after 20s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Debug) (push) Failing after 5m31s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Release) (push) Has been cancelled
linux-arm-gcc / linux-gcc-arm (Debug) (push) Has been cancelled
linux-arm-gcc / linux-gcc-arm (Release) (push) Has been cancelled
linux-arm-gcc / linux-gcc-armhf (Debug) (push) Has been cancelled
linux-arm-gcc / linux-gcc-armhf (Release) (push) Has been cancelled
linux-mips-gcc / linux-gcc-mipsel (Debug) (push) Has been cancelled
linux-mips-gcc / linux-gcc-mipsel (Release) (push) Has been cancelled
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Has been cancelled
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Has been cancelled
linux-riscv64-gcc / linux-gcc-riscv64 (Debug) (push) Has been cancelled
linux-riscv64-gcc / linux-gcc-riscv64 (Release) (push) Has been cancelled
linux-x64-clang / linux-clang (Debug) (push) Has been cancelled
linux-x64-clang / linux-clang (Release) (push) Has been cancelled
linux-x64-gcc / linux-gcc (Release) (push) Has been cancelled
linux-x64-gcc / linux-gcc (Debug) (push) Has been cancelled
linux-x86-gcc / linux-gcc (Debug) (push) Failing after 3m36s
linux-x86-gcc / linux-gcc (Release) (push) Failing after 4m11s
53 lines
1.9 KiB
C
53 lines
1.9 KiB
C
#ifndef HEADER_CURL_KRB5_H
|
|
#define HEADER_CURL_KRB5_H
|
|
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
*
|
|
* This software is licensed as described in the file COPYING, which
|
|
* you should have received as part of this distribution. The terms
|
|
* are also available at https://curl.se/docs/copyright.html.
|
|
*
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
* SPDX-License-Identifier: curl
|
|
*
|
|
***************************************************************************/
|
|
|
|
struct Curl_sec_client_mech {
|
|
const char *name;
|
|
size_t size;
|
|
int (*init)(void *);
|
|
int (*auth)(void *, struct Curl_easy *data, struct connectdata *);
|
|
void (*end)(void *);
|
|
int (*check_prot)(void *, int);
|
|
int (*encode)(void *, const void *, int, int, void **);
|
|
int (*decode)(void *, void *, int, int, struct connectdata *);
|
|
};
|
|
|
|
#define AUTH_OK 0
|
|
#define AUTH_CONTINUE 1
|
|
#define AUTH_ERROR 2
|
|
|
|
#ifdef HAVE_GSSAPI
|
|
int Curl_sec_read_msg(struct Curl_easy *data, struct connectdata *conn, char *,
|
|
enum protection_level);
|
|
void Curl_sec_end(struct connectdata *);
|
|
CURLcode Curl_sec_login(struct Curl_easy *, struct connectdata *);
|
|
int Curl_sec_request_prot(struct connectdata *conn, const char *level);
|
|
#else
|
|
#define Curl_sec_end(x)
|
|
#endif
|
|
|
|
#endif /* HEADER_CURL_KRB5_H */
|