summaryrefslogtreecommitdiff
path: root/include/resolver.h
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2008-08-10 12:37:28 +0200
committerMarcel Holtmann <marcel@holtmann.org>2008-08-10 12:37:28 +0200
commitefcc940369f9f9e14bcd325a4a221eb94eb1f104 (patch)
tree82082109079cb4d0ab526d21a2567f53aef38395 /include/resolver.h
parent8dacf3b5cde294708c06e16a8c03b34834448e48 (diff)
downloadconnman-efcc940369f9f9e14bcd325a4a221eb94eb1f104.tar.gz
connman-efcc940369f9f9e14bcd325a4a221eb94eb1f104.tar.bz2
connman-efcc940369f9f9e14bcd325a4a221eb94eb1f104.zip
Remove old resolver implementation
Diffstat (limited to 'include/resolver.h')
-rw-r--r--include/resolver.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/include/resolver.h b/include/resolver.h
deleted file mode 100644
index e3c368e2..00000000
--- a/include/resolver.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- *
- * Connection Manager
- *
- * Copyright (C) 2007-2008 Intel Corporation. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- *
- */
-
-#ifndef __CONNMAN_RESOLVER_H
-#define __CONNMAN_RESOLVER_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include <connman/iface.h>
-
-struct connman_resolver_driver {
- const char *name;
- int (*append) (struct connman_iface *iface, const char *nameserver);
- int (*remove) (struct connman_iface *iface);
-};
-
-extern int connman_resolver_register(struct connman_resolver_driver *driver);
-extern void connman_resolver_unregister(struct connman_resolver_driver *driver);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* __CONNMAN_RESOLVER_H */