summaryrefslogtreecommitdiff
path: root/service/realm-options.h
blob: 569ef42d8a4f4e3739862820774f963da3b49733 (plain)
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
/* realmd -- Realm configuration service
 *
 * Copyright 2012 Red Hat Inc
 *
 * This program 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 of the licence or (at
 * your option) any later version.
 *
 * See the included COPYING file for more information.
 *
 * Author: Stef Walter <stefw@gnome.org>
 */

#include "config.h"

#ifndef __REALM_OPTIONS_H__
#define __REALM_OPTIONS_H__

#include <gio/gio.h>

G_BEGIN_DECLS

gboolean       realm_options_manage_system            (GVariant *options,
                                                       const gchar *realm_name);

gboolean       realm_options_automatic_install        (void);

gboolean       realm_options_automatic_join           (const gchar *realm_name);

const gchar *  realm_options_computer_ou              (GVariant *options,
                                                       const gchar *realm_name);

const gchar *  realm_options_user_principal           (GVariant *options,
                                                       const gchar *realm_name);

gboolean       realm_options_automatic_mapping        (GVariant *options,
						       const gchar *realm_name);

gboolean       realm_options_qualify_names            (const gchar *realm_name,
                                                       gboolean def);

gboolean       realm_options_check_domain_name        (const gchar *domain_name);

const gchar *  realm_options_computer_name           (GVariant *options,
                                                       const gchar *realm_name);

const gchar *  realm_options_ad_specific              (GVariant *options,
                                                       const gchar *option_name);

gboolean       realm_option_use_ldaps                 (GVariant *options);

gboolean       realm_option_do_not_touch_config       (GVariant *options);

G_END_DECLS

#endif /* __REALM_OPTIONS_H__ */