GNOME Bugzilla – Bug 766150
Unable to create Gio::SocketAddress instance using Gio::SocketAddress::create()
Last modified: 2016-05-09 12:33:08 UTC
Call Gio::SocketAddress::create(gpointer native, gsize len) fails with any parameters: glibmm-WARNING **: Glib::ConstructParams::ConstructParams(): object class "gtkmm__GSocketAddress" has no property named "native"
Thanks. This should fix that: https://git.gnome.org/browse/glibmm/commit/?id=1bd61e69afed88b1ffc9e46370b415397d530c0e In the meantime, you could try doing this instead: Glib::RefPtr<SocketAddress> address = Glib::wrap(g_socket_address_new_from_native(native, len)); That's what the new code does, so please let us know if that works for you.
Yeah, it works fine with Glib::wrap.