summaryrefslogtreecommitdiffstats
path: root/src/avahi.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-06-22 00:36:49 +0000
committerLennart Poettering <lennart@poettering.net>2005-06-22 00:36:49 +0000
commit6dc69c9a94e128f6703ddfcc38c253f0c8cc9d7b (patch)
treed55c5b2d5b18bb088d80d8ba5ed72c350743eb91 /src/avahi.h
parent7a2a47660cceac9a053f739cf79f71d5bfb85c7c (diff)
* add support for using an avahi daemon if available
git-svn-id: file:///home/lennart/svn/public/nss-mdns/trunk@81 0ee8848e-81ea-0310-a63a-f631d1a40d77
Diffstat (limited to 'src/avahi.h')
-rw-r--r--src/avahi.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/avahi.h b/src/avahi.h
new file mode 100644
index 0000000..79d1c86
--- /dev/null
+++ b/src/avahi.h
@@ -0,0 +1,33 @@
+#ifndef fooavahihfoo
+#define fooavahihfoo
+
+/* $Id$ */
+
+/***
+ This file is part of nss-mdns.
+
+ nss-mdns 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
+ License, or (at your option) any later version.
+
+ nss-mdns 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 Lesser General Public
+ License along with nss-mdns; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+ USA.
+***/
+
+
+#include <inttypes.h>
+#include <sys/types.h>
+
+int avahi_resolve_name(int af, const char* name, void* data);
+
+int avahi_resolve_address(int af, const void *data, char* name, size_t name_len);
+
+#endif