~stgraber/+junk/nm-ofono

« back to all changes in this revision

Viewing changes to src/nm-dhcp4-config.h

  • Committer: Stéphane Graber
  • Date: 2013-03-15 18:27:57 UTC
  • Revision ID: stgraber@ubuntu.com-20130315182757-7bcjymubsn3lsshs
Import of NM 0.9.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
 
2
/* NetworkManager -- Network link manager
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License along
 
15
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
16
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
17
 *
 
18
 * Copyright (C) 2008 Red Hat, Inc.
 
19
 */
 
20
 
 
21
#ifndef NM_DHCP4_CONFIG_H
 
22
#define NM_DHCP4_CONFIG_H
 
23
 
 
24
#include <glib.h>
 
25
#include <glib-object.h>
 
26
 
 
27
#define NM_TYPE_DHCP4_CONFIG            (nm_dhcp4_config_get_type ())
 
28
#define NM_DHCP4_CONFIG(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_DHCP4_CONFIG, NMDHCP4Config))
 
29
#define NM_DHCP4_CONFIG_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_DHCP4_CONFIG, NMDHCP4ConfigClass))
 
30
#define NM_IS_DHCP4_CONFIG(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_DHCP4_CONFIG))
 
31
#define NM_IS_DHCP4_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_DHCP4_CONFIG))
 
32
#define NM_DHCP4_CONFIG_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_DHCP4_CONFIG, NMDHCP4ConfigClass))
 
33
 
 
34
typedef struct {
 
35
        GObject parent;
 
36
} NMDHCP4Config;
 
37
 
 
38
typedef struct {
 
39
        GObjectClass parent;
 
40
 
 
41
        /* Signals */
 
42
        void (*properties_changed) (NMDHCP4Config *config, GHashTable *properties);
 
43
} NMDHCP4ConfigClass;
 
44
 
 
45
#define NM_DHCP4_CONFIG_OPTIONS "options"
 
46
 
 
47
GType nm_dhcp4_config_get_type (void);
 
48
 
 
49
NMDHCP4Config *nm_dhcp4_config_new (void);
 
50
 
 
51
const char *nm_dhcp4_config_get_dbus_path (NMDHCP4Config *config);
 
52
 
 
53
void nm_dhcp4_config_add_option (NMDHCP4Config *config,
 
54
                                 const char *key,
 
55
                                 const char *option);
 
56
 
 
57
void nm_dhcp4_config_reset (NMDHCP4Config *config);
 
58
 
 
59
const char *nm_dhcp4_config_get_option (NMDHCP4Config *config, const char *option);
 
60
 
 
61
GSList *nm_dhcp4_config_list_options (NMDHCP4Config *config);
 
62
 
 
63
#endif /* NM_DHCP4_CONFIG_H */