~cyphermox/ubuntu/natty/connman/release-0.64

« back to all changes in this revision

Viewing changes to include/element.h

  • Committer: Mathieu Trudel-Lapierre
  • Date: 2010-11-30 15:51:10 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: mathieu.trudel-lapierre@canonical.com-20101130155110-32g0usyc4jbl131x
New upstream release 0.64.

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
 
99
99
        GHashTable *properties;
100
100
 
 
101
        gchar *hostname;
 
102
        gchar *domainname;
 
103
 
101
104
        struct {
102
105
                enum connman_ipconfig_method method;
103
106
                gchar *address;
 
107
                gchar *peer;
104
108
                gchar *netmask;
105
109
                gchar *gateway;
106
110
                gchar *network;
109
113
                gchar *timeserver;
110
114
                gchar *pac;
111
115
        } ipv4;
 
116
 
 
117
        struct {
 
118
                enum connman_ipconfig_method method;
 
119
                gchar *address;
 
120
                int prefix_len;
 
121
                gchar *gateway;
 
122
                gchar *network;
 
123
        } ipv6;
112
124
};
113
125
 
114
126
struct connman_element *connman_element_create(const char *name);