diff options
author | wiz <wiz@pkgsrc.org> | 2010-01-20 13:44:02 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2010-01-20 13:44:02 +0000 |
commit | 9b2399ed3ad7073a60259ff9a164fea79223e8fd (patch) | |
tree | ac413c8ee23b331923152cae95c33b46f246895c /net/gssdp/patches | |
parent | ad5d8fd781934b4b7e03fc9d111a23382b704c85 (diff) | |
download | pkgsrc-9b2399ed3ad7073a60259ff9a164fea79223e8fd.tar.gz |
Update to 0.7.1:
0.7.1
=====
- Don't leak target regex.
- Make GSSDPClient ignore Point to Point interfaces.
- Use SO_REUSEPORT if present. Darwin and some BSDs don't have SO_REUSEADDR, but
SO_REUSEPORT.
- If we can't create a request socket don't try to create a multicast socket.
- Have specific GError code for interfaces without an IP address.
- Actually remove gssdp_client_new_full().
Bugs fixed:
1898 - GSSDPClient keeps autoselecting my VPN
1810 - Not possible to run multiple ssdp clients on darwin
1800 - leak of a gregex in gssdp-resource-browser
1796 - gssdp_client_new_full is declared in header but not implemented
All contributors:
Olivier CrĂȘte <olivier.crete@collabora.co.uk>
Ross Burton <ross@linux.intel.com>
Iain Holmes <iain@linux.intel.com>
Mattias Wadman <mattias.wadman@gmail.com>
Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
0.7
===
- Join the multicast group on the specified interface.
- Put the message src timeout in the specified GMainContext.
- "host-ip" property moved from GUPnPContext to parent GSSDPClient.
- Use inet_aton instead of inet_addr and handle the error from it.
- gssdp-device-sniffer ported to GtkBuilder.
- Version-independent target match. This makes client forward and backward
compatible with resources that implement different version of the specs than
the client.
- Version-independent M-SEARCH response. This has the same effect as above but
only the other way around.
- GSSDPClient now binds to interface rather than IP.
- No need to find the default route.
- Add "active" property to GSSDPClient.
- Fix pkg-config paths.
- Add basic .gitignore.
- Other minor/internal changes.
Bugs fixed:
1621 - new gssdp timeout not added to the specific maincontext
1570 - gupnp doesn't set the pkgconfig lib dir correctly in 64 bit env
Dependencies dropped:
- libglade
All contributors:
Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
Ross Burton <ross@linux.intel.com>
Jens Georg <mail@jensge.org>
Olivier CrĂȘte <olivier.crete@collabora.co.uk>
WARNING: This release is API and ABI incompatible with previous releases.
Diffstat (limited to 'net/gssdp/patches')
-rw-r--r-- | net/gssdp/patches/patch-aa | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net/gssdp/patches/patch-aa b/net/gssdp/patches/patch-aa index 2e2f92491d3..2b2ff0b8e76 100644 --- a/net/gssdp/patches/patch-aa +++ b/net/gssdp/patches/patch-aa @@ -1,8 +1,8 @@ -$NetBSD: patch-aa,v 1.1.1.1 2009/08/02 11:24:06 drochner Exp $ +$NetBSD: patch-aa,v 1.2 2010/01/20 13:44:03 wiz Exp $ ---- ./libgssdp/gssdp-socket-source.c.orig 2009-01-06 15:44:15.000000000 +0100 -+++ ./libgssdp/gssdp-socket-source.c -@@ -121,6 +121,16 @@ gssdp_socket_source_new (GSSDPSocketSour +--- libgssdp/gssdp-socket-source.c.orig 2009-12-02 11:06:02.000000000 +0000 ++++ libgssdp/gssdp-socket-source.c +@@ -154,6 +154,16 @@ gssdp_socket_source_new (GSSDPSocketSour if (res == -1) goto error; @@ -17,5 +17,5 @@ $NetBSD: patch-aa,v 1.1.1.1 2009/08/02 11:24:06 drochner Exp $ +#endif + /* Subscribe to multicast channel */ - mreq.imr_multiaddr.s_addr = inet_addr (SSDP_ADDR); - mreq.imr_interface.s_addr = htonl (INADDR_ANY); + res = inet_aton (SSDP_ADDR, &(mreq.imr_multiaddr)); + if (res == 0) |