if (!(d->dispatch_timeout = poll_api->timeout_new(poll_api, NULL, dispatch_timeout_callback, d)))
goto fail;
- if (!(dbus_connection_set_watch_functions(c, add_watch, remove_watch, watch_toggled, connection_data_ref(d), connection_data_unref)))
+ if (!(dbus_connection_set_watch_functions(c, add_watch, remove_watch, watch_toggled, connection_data_ref(d), (DBusFreeFunction)connection_data_unref)))
goto fail;
- if (!(dbus_connection_set_timeout_functions(c, add_timeout, remove_timeout, timeout_toggled, connection_data_ref(d), connection_data_unref)))
+ if (!(dbus_connection_set_timeout_functions(c, add_timeout, remove_timeout, timeout_toggled, connection_data_ref(d), (DBusFreeFunction)connection_data_unref)))
goto fail;
- dbus_connection_set_dispatch_status_function(c, dispatch_status, connection_data_ref(d), connection_data_unref);
+ dbus_connection_set_dispatch_status_function(c, dispatch_status, connection_data_ref(d), (DBusFreeFunction)connection_data_unref);
if (dbus_connection_get_dispatch_status(c) == DBUS_DISPATCH_DATA_REMAINS)
request_dispatch(d);
<!ATTLIST host-name>
<!ELEMENT port (#PCDATA)>
<!ATTLIST port>
+<!ELEMENT protocol (#PCDATA)>
+<!ATTLIST protocol>
<!ELEMENT txt-record (#PCDATA)>
<!ATTLIST txt-record>
<domain-name>local</domain-name>
<host-name>quux.local</host-name>
<port>4711</port>
+ <protocol>any</protocol>
<txt-record>this=is</txt-record>
<txt-record>a=really</txt-record>
<txt-record>bad=example</txt-record>
char *domain_name;
char *host_name;
uint16_t port;
+ int protocol;
AvahiStringList *txt_records;
s->type = s->host_name = s->domain_name = NULL;
s->port = 0;
+ s->protocol = AF_UNSPEC;
s->txt_records = NULL;
if (avahi_server_add_service_strlst(
avahi_server,
g->entry_group,
- -1, AF_UNSPEC,
+ -1, s->protocol,
g->chosen_name, s->type,
s->domain_name, s->host_name, s->port,
s->txt_records) < 0) {
XML_TAG_DOMAIN_NAME,
XML_TAG_HOST_NAME,
XML_TAG_PORT,
+ XML_TAG_PROTOCOL,
XML_TAG_TXT_RECORD
} xml_tag_name;
goto invalid_attr;
u->current_tag = XML_TAG_PORT;
+ } else if (u->current_tag == XML_TAG_SERVICE && strcmp(el, "protocol") == 0) {
+ if (attr[0])
+ goto invalid_attr;
+
+ u->current_tag = XML_TAG_PROTOCOL;
} else if (u->current_tag == XML_TAG_SERVICE && strcmp(el, "txt-record") == 0) {
if (attr[0])
goto invalid_attr;
break;
}
+ case XML_TAG_PROTOCOL: {
+ int protocol;
+ assert(u->service);
+
+ if (strcasecmp (u->buf, "ipv4") == 0) {
+ protocol = AF_INET;
+ } else if (strcasecmp (u->buf, "ipv6") == 0) {
+ protocol = AF_INET6;
+ } else if (strcasecmp (u->buf, "any") == 0) {
+ protocol = AF_UNSPEC;
+ } else {
+ avahi_log_error("%s: parse failure: invalid protocol specification \"%s\".", u->group->filename, u->buf);
+ u->failed = 1;
+ return;
+ }
+
+ u->service->protocol = protocol;
+ break;
+ }
+
case XML_TAG_TXT_RECORD: {
assert(u->service);
break;
case XML_TAG_PORT:
+ case XML_TAG_PROTOCOL:
case XML_TAG_TXT_RECORD:
+ assert(u->service);
u->buf = append_cdata(u->buf, s, len);
break;
path = self.find_path(v[4])
- t += '<li><a href="%s://%s%s%s">%s</a></li>' % (urlproto[k[3]], v[2], port, path, k[2])
+ if v[1] == avahi.PROTO_INET6:
+ ip = "[" + v[2] + "]"
+ else:
+ ip = v[2]
+
+ t += '<li><a href="%s://%s%s%s">%s</a></li>' % (urlproto[k[3]], ip, port, path, k[2])
t += '</ul>'
<p><opt><port></opt> The IP port number the service listens on.</p>
</option>
+ <option>
+ <p><opt><protocol></opt> The protocol to advertise the service on, can be any of <opt>ipv4</opt>, <opt>ipv6</opt> or <opt>any</opt>.</p>
+ </option>
+
<option>
<p><opt><txt-record></opt> DNS-SD TXT record data.</p>
</option>