/usr/include/libsoup-2.4/libsoup/soup-auth.h is in libsoup2.4-dev 2.44.2-1ubuntu2.3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Copyright (C) 2001-2003, Ximian, Inc.
*/
#ifndef SOUP_AUTH_H
#define SOUP_AUTH_H 1
#include <libsoup/soup-types.h>
#include <libsoup/soup-headers.h>
G_BEGIN_DECLS
#define SOUP_TYPE_AUTH (soup_auth_get_type ())
#define SOUP_AUTH(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SOUP_TYPE_AUTH, SoupAuth))
#define SOUP_AUTH_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SOUP_TYPE_AUTH, SoupAuthClass))
#define SOUP_IS_AUTH(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SOUP_TYPE_AUTH))
#define SOUP_IS_AUTH_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), SOUP_TYPE_AUTH))
#define SOUP_AUTH_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SOUP_TYPE_AUTH, SoupAuthClass))
struct _SoupAuth {
GObject parent;
char *realm;
};
typedef struct {
GObjectClass parent_class;
const char *scheme_name;
guint strength;
gboolean (*update) (SoupAuth *auth,
SoupMessage *msg,
GHashTable *auth_header);
GSList * (*get_protection_space) (SoupAuth *auth,
SoupURI *source_uri);
void (*authenticate) (SoupAuth *auth,
const char *username,
const char *password);
gboolean (*is_authenticated) (SoupAuth *auth);
char * (*get_authorization) (SoupAuth *auth,
SoupMessage *msg);
gboolean (*is_ready) (SoupAuth *auth,
SoupMessage *msg);
/* Padding for future expansion */
void (*_libsoup_reserved2) (void);
void (*_libsoup_reserved3) (void);
void (*_libsoup_reserved4) (void);
} SoupAuthClass;
#define SOUP_AUTH_SCHEME_NAME "scheme-name"
#define SOUP_AUTH_REALM "realm"
#define SOUP_AUTH_HOST "host"
#define SOUP_AUTH_IS_FOR_PROXY "is-for-proxy"
#define SOUP_AUTH_IS_AUTHENTICATED "is-authenticated"
GType soup_auth_get_type (void);
SoupAuth *soup_auth_new (GType type,
SoupMessage *msg,
const char *auth_header);
gboolean soup_auth_update (SoupAuth *auth,
SoupMessage *msg,
const char *auth_header);
gboolean soup_auth_is_for_proxy (SoupAuth *auth);
const char *soup_auth_get_scheme_name (SoupAuth *auth);
const char *soup_auth_get_host (SoupAuth *auth);
const char *soup_auth_get_realm (SoupAuth *auth);
char *soup_auth_get_info (SoupAuth *auth);
void soup_auth_authenticate (SoupAuth *auth,
const char *username,
const char *password);
gboolean soup_auth_is_authenticated (SoupAuth *auth);
SOUP_AVAILABLE_IN_2_42
gboolean soup_auth_is_ready (SoupAuth *auth,
SoupMessage *msg);
char *soup_auth_get_authorization (SoupAuth *auth,
SoupMessage *msg);
GSList *soup_auth_get_protection_space (SoupAuth *auth,
SoupURI *source_uri);
void soup_auth_free_protection_space (SoupAuth *auth,
GSList *space);
/* The actual auth types, which can be added/removed as features */
#define SOUP_TYPE_AUTH_BASIC (soup_auth_basic_get_type ())
GType soup_auth_basic_get_type (void);
#define SOUP_TYPE_AUTH_DIGEST (soup_auth_digest_get_type ())
GType soup_auth_digest_get_type (void);
#define SOUP_TYPE_AUTH_NTLM (soup_auth_ntlm_get_type ())
GType soup_auth_ntlm_get_type (void);
/* Deprecated SoupPasswordManager-related APIs: all are now no-ops */
SOUP_AVAILABLE_IN_2_28
SOUP_DEPRECATED_IN_2_28
GSList *soup_auth_get_saved_users (SoupAuth *auth);
SOUP_AVAILABLE_IN_2_28
SOUP_DEPRECATED_IN_2_28
const char *soup_auth_get_saved_password (SoupAuth *auth,
const char *user);
SOUP_AVAILABLE_IN_2_28
SOUP_DEPRECATED_IN_2_28
void soup_auth_save_password (SoupAuth *auth,
const char *username,
const char *password);
SOUP_AVAILABLE_IN_2_28
SOUP_DEPRECATED_IN_2_28
void soup_auth_has_saved_password (SoupAuth *auth,
const char *username,
const char *password);
G_END_DECLS
#endif /* SOUP_AUTH_H */
|