Hi All,<br><br>I have written a program to publish simple tcp service in avahi daeman.<br>Here is the relevant code fragment. <br><br>[code]<br> /*Add the services for IPP */<br><br> if((ret=avahi_entry_group_add_service(group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, name, "_ipp._tcp", NULL, NULL, 651, "test=blah", r, NULL )) < 0)<br>
{<br> if(ret == AVAHI_ERR_COLLISION)<br> goto collision;<br><br> perror("Failed to add _ipp._tcp service: \n");<br> goto fail;<br> }<br><br>[/code]<br><br><br>Now I want to see this from pidgin or any chat client. <br>
Is this possible ? If it is how can I do that? <br><br>Thanks.<br>