mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-28 08:35:22 +00:00
ab74e8763d
Compilation for xdg-app failed due to a buggy SASL headers present on
the used runtime (org.gnome.Sdk 3.18).
In file included from rpc/virnetsaslcontext.h:24:0,
from rpc/virnetsaslcontext.c:25:
/usr/include/sasl/sasl.h:230:38: error: unknown type name 'size_t'
typedef void *sasl_realloc_t(void *, size_t);
^
/usr/include/sasl/sasl.h:235:5: error: unknown type name 'sasl_realloc_t'
sasl_realloc_t *,
Use the same workaround as commit 1be3dfd
did.
Signed-off-by: Ján Tomko <jtomko@redhat.com>
114 lines
4.5 KiB
C
114 lines
4.5 KiB
C
/*
|
|
* virnetsaslcontext.h: SASL encryption/auth handling
|
|
*
|
|
* Copyright (C) 2010-2011 Red Hat, Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __VIR_NET_CLIENT_SASL_CONTEXT_H__
|
|
# define __VIR_NET_CLIENT_SASL_CONTEXT_H__
|
|
|
|
# include "internal.h"
|
|
# include <sasl/sasl.h>
|
|
|
|
# include "virobject.h"
|
|
|
|
typedef struct _virNetSASLContext virNetSASLContext;
|
|
typedef virNetSASLContext *virNetSASLContextPtr;
|
|
|
|
typedef struct _virNetSASLSession virNetSASLSession;
|
|
typedef virNetSASLSession *virNetSASLSessionPtr;
|
|
|
|
enum {
|
|
VIR_NET_SASL_COMPLETE,
|
|
VIR_NET_SASL_CONTINUE,
|
|
VIR_NET_SASL_INTERACT,
|
|
};
|
|
|
|
virNetSASLContextPtr virNetSASLContextNewClient(void);
|
|
virNetSASLContextPtr virNetSASLContextNewServer(const char *const*usernameWhitelist);
|
|
|
|
int virNetSASLContextCheckIdentity(virNetSASLContextPtr ctxt,
|
|
const char *identity);
|
|
|
|
virNetSASLSessionPtr virNetSASLSessionNewClient(virNetSASLContextPtr ctxt,
|
|
const char *service,
|
|
const char *hostname,
|
|
const char *localAddr,
|
|
const char *remoteAddr,
|
|
sasl_callback_t *cbs);
|
|
virNetSASLSessionPtr virNetSASLSessionNewServer(virNetSASLContextPtr ctxt,
|
|
const char *service,
|
|
const char *localAddr,
|
|
const char *remoteAddr);
|
|
|
|
char *virNetSASLSessionListMechanisms(virNetSASLSessionPtr sasl);
|
|
|
|
int virNetSASLSessionExtKeySize(virNetSASLSessionPtr sasl,
|
|
int ssf);
|
|
|
|
int virNetSASLSessionGetKeySize(virNetSASLSessionPtr sasl);
|
|
|
|
const char *virNetSASLSessionGetIdentity(virNetSASLSessionPtr sasl);
|
|
|
|
int virNetSASLSessionSecProps(virNetSASLSessionPtr sasl,
|
|
int minSSF,
|
|
int maxSSF,
|
|
bool allowAnonymous);
|
|
|
|
int virNetSASLSessionClientStart(virNetSASLSessionPtr sasl,
|
|
const char *mechlist,
|
|
sasl_interact_t **prompt_need,
|
|
const char **clientout,
|
|
size_t *clientoutlen,
|
|
const char **mech);
|
|
|
|
int virNetSASLSessionClientStep(virNetSASLSessionPtr sasl,
|
|
const char *serverin,
|
|
size_t serverinlen,
|
|
sasl_interact_t **prompt_need,
|
|
const char **clientout,
|
|
size_t *clientoutlen);
|
|
|
|
int virNetSASLSessionServerStart(virNetSASLSessionPtr sasl,
|
|
const char *mechname,
|
|
const char *clientin,
|
|
size_t clientinlen,
|
|
const char **serverout,
|
|
size_t *serveroutlen);
|
|
|
|
int virNetSASLSessionServerStep(virNetSASLSessionPtr sasl,
|
|
const char *clientin,
|
|
size_t clientinlen,
|
|
const char **serverout,
|
|
size_t *serveroutlen);
|
|
|
|
size_t virNetSASLSessionGetMaxBufSize(virNetSASLSessionPtr sasl);
|
|
|
|
ssize_t virNetSASLSessionEncode(virNetSASLSessionPtr sasl,
|
|
const char *input,
|
|
size_t inputLen,
|
|
const char **output,
|
|
size_t *outputlen);
|
|
|
|
ssize_t virNetSASLSessionDecode(virNetSASLSessionPtr sasl,
|
|
const char *input,
|
|
size_t inputLen,
|
|
const char **output,
|
|
size_t *outputlen);
|
|
|
|
#endif /* __VIR_NET_CLIENT_SASL_CONTEXT_H__ */
|