~ubuntu-branches/ubuntu/natty/network-manager/natty

« back to all changes in this revision

Viewing changes to src/dns-manager/nm-dns-utils.h

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2010-12-20 13:55:42 UTC
  • mfrom: (1.1.41 upstream)
  • Revision ID: james.westby@ubuntu.com-20101220135542-g89nug62v8lx8kx4
Tags: 0.8.3+git.20101219t181118.e919218-0ubuntu1
* upstream snapshot 2010-12-19 18:11:18 (GMT)
  + e91921814569bf9033fa0779837a77b22eb98e4a 
  - libnm-util: fix a memory leak in nm_setting_to_string()
  - various ipv6 fixes
  - libnm-util: fix nm_utils_security_valid() checks for Ad-Hoc APs
  - dns: direct IPv4 reverse DNS queries to split DNS servers
  - policy: stop touching /etc/hosts
  - dhclient: split out dhclient config merging and add testcases
  - dhclient: explicitly request WPAD option (bgo #368423)
* Drop the patch to not write localhost.localdomain in /etc/hosts, it's no
  longer needed now that NM doesn't change the hosts file.
  - delete debian/patches/never-localhostlocaldomain.patch
  - update debian/patches/series
* debian/libnm-glib2.symbols: Add new symbols for libnm-glib2:
  + nm_dhcp6_config_get_one_option
  + nm_dhcp6_config_get_options
  + nm_dhcp6_config_get_type
  + nm_dhcp6_config_new
* Add vpn-up/vpn-down options for the NM dispatcher script. This should really
  fix bug 661951. (LP: #661951)
  - update debian/network-manager-dispatcher.script

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
/* This program is free software; you can redistribute it and/or modify
 
3
 * it under the terms of the GNU General Public License as published by
 
4
 * the Free Software Foundation; either version 2, or (at your option)
 
5
 * any later version.
 
6
 *
 
7
 * This program is distributed in the hope that it will be useful,
 
8
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
 * GNU General Public License for more details.
 
11
 *
 
12
 * You should have received a copy of the GNU General Public License along
 
13
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
14
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
15
 *
 
16
 * Copyright (C) 2010 Red Hat, Inc.
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef NM_DNS_UTILS_H
 
21
#define NM_DNS_UTILS_H
 
22
 
 
23
#include "nm-ip4-config.h"
 
24
 
 
25
char **nm_dns_utils_get_ip4_rdns_domains (NMIP4Config *ip4);
 
26
 
 
27
#endif  /* NM_DNS_UTILS_H */
 
28