I have an avahi (zeroconf, dnssd, bonjour) service. I want the service to be able to notify the clients when it has new data so the clients can then connect and query for the updated information.

What type of message should the service publish, and how is this done with the avahi API (service is written in C++)?

link|improve this question

56% accept rate
I should add that if someone knows how to do this in another language other than C++ I will happily take that answer and then just port it to the C++ api. thanks! – Poul Apr 25 '11 at 19:40
feedback

1 Answer

I don't know what C++ API you are refering to, but this is how you do it in the C-layer. You can use the following functions in avahi to update the TXT record of the service.

avahi_entry_group_update_service_txt (AvahiEntryGroup *g, ...)
avahi_entry_group_update_service_txt_strlst (AvahiEntryGroup *g, ...)

Listening clients will receive a service updated event.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.