Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
libdmapsharing
Commits
5ea14027
Commit
5ea14027
authored
Sep 07, 2010
by
W. Michael Petullo
Browse files
Allow dmap-mdns-*-dnssd.c to compile
Signed-off-by:
W. Michael Petullo
<
mike@flyn.org
>
parent
326e265b
Changes
4
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
5ea14027
07 September 2010 W. Michael Petullo <mike@flyn.org>
* Allow dmap-mdns-*-dnssd.c to compile.
06 September 2010 W. Michael Petullo <mike@flyn.org>
* Fix serving to iTunes 10.
...
...
configure.ac
View file @
5ea14027
AC_INIT(libdmapsharing, 2.1.
1
)
AC_INIT(libdmapsharing, 2.1.
2
)
dnl when going to/from release please set the nano (fourth number) right !
dnl releases only do Wall, cvs and prerelease does Werror too
AS_VERSION(libdmapsharing, LIBDMAPSHARING, 2, 1,
1
, LIBDMAPSHARING_CVS="no", LIBDMAPSHARING_CVS="yes")
AS_VERSION(libdmapsharing, LIBDMAPSHARING, 2, 1,
2
, LIBDMAPSHARING_CVS="no", LIBDMAPSHARING_CVS="yes")
dnl FIXME:
dnl would like to automate this off the above definitions, but API might be 2.2 with version 2.1.
...
...
libdmapsharing/dmap-mdns-browser-dnssd.c
View file @
5ea14027
...
...
@@ -38,3 +38,11 @@ dmap_mdns_browser_start (DMAPMdnsBrowser *browser,
g_error
(
"Not implemented"
);
return
FALSE
;
}
gboolean
dmap_mdns_browser_stop
(
DMAPMdnsBrowser
*
browser
,
GError
**
error
)
{
g_error
(
"Not implemented"
);
return
FALSE
;
}
libdmapsharing/dmap-mdns-publisher-dnssd.c
View file @
5ea14027
...
...
@@ -136,14 +136,19 @@ dmap_mdns_publisher_set_password_required (DmapMdnsPublisher *publisher,
gboolean
dmap_mdns_publisher_publish
(
DmapMdnsPublisher
*
publisher
,
const
char
*
name
,
guint
port
,
const
char
*
type_of_service
,
gboolean
password_required
,
GError
**
error
)
const
char
*
name
,
guint
port
,
const
char
*
type_of_service
,
gboolean
password_required
,
gchar
**
txt_records
,
GError
**
error
)
{
int
dns_err
;
/* FIXME: does not do anything with txt_records yet */
if
(
txt_records
!=
NULL
)
g_error
(
"dmap_mdns_publisher_publish() can not handle txt_records yet"
);
publisher_set_name_internal
(
publisher
,
name
,
NULL
);
publisher_set_port_internal
(
publisher
,
port
,
NULL
);
publisher_set_type_of_service_internal
(
publisher
,
type_of_service
,
NULL
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment