summaryrefslogtreecommitdiffstats
path: root/subscribe.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-05-06 15:21:41 +0000
committerLennart Poettering <lennart@poettering.net>2005-05-06 15:21:41 +0000
commit7dce450bdc23ea306a61e00f914481e29ebcb176 (patch)
tree694acedcd6728844167c5cde09841058fc20e99e /subscribe.h
parent844f6b5a8213018c3d42b5ef924b61cf3eafcdbb (diff)
Rename flx_* to avahi_*
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@46 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'subscribe.h')
-rw-r--r--subscribe.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/subscribe.h b/subscribe.h
index 2399077..3ea0d8a 100644
--- a/subscribe.h
+++ b/subscribe.h
@@ -2,30 +2,30 @@
#define foosubscribehfoo
#include "llist.h"
-#include "flx.h"
+#include "Avahi.h"
#include "subscribe.h"
#include "timeeventq.h"
#include "server.h"
-struct _flxSubscription {
- flxServer *server;
- flxKey *key;
+struct _AvahiSubscription {
+ AvahiServer *server;
+ AvahiKey *key;
gint interface;
guchar protocol;
gint n_query;
guint sec_delay;
- flxTimeEvent *time_event;
+ AvahiTimeEvent *time_event;
- flxSubscriptionCallback callback;
+ AvahiSubscriptionCallback callback;
gpointer userdata;
- FLX_LLIST_FIELDS(flxSubscription, subscriptions);
- FLX_LLIST_FIELDS(flxSubscription, by_key);
+ AVAHI_LLIST_FIELDS(AvahiSubscription, subscriptions);
+ AVAHI_LLIST_FIELDS(AvahiSubscription, by_key);
};
-void flx_subscription_notify(flxServer *s, flxInterface *i, flxRecord *record, flxSubscriptionEvent event);
+void avahi_subscription_notify(AvahiServer *s, AvahiInterface *i, AvahiRecord *record, AvahiSubscriptionEvent event);
-gboolean flx_is_subscribed(flxServer *s, flxKey *k);
+gboolean avahi_is_subscribed(AvahiServer *s, AvahiKey *k);
#endif