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, &quot;_ipp._tcp&quot;, NULL, NULL, 651, &quot;test=blah&quot;, r, NULL )) &lt; 0)<br>
    {<br>      if(ret == AVAHI_ERR_COLLISION)<br>        goto collision;<br><br>      perror(&quot;Failed to add _ipp._tcp service: \n&quot;);<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>