From 9425cc77c57e99ea091ecc342204a28fa958a7a7 Mon Sep 17 00:00:00 2001 From: Samuel Cormier-Iijima Date: Thu, 28 Feb 2008 16:47:09 -0500 Subject: [PATCH] Forgot to actually install the property --- gnio/gsocket.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gnio/gsocket.c b/gnio/gsocket.c index 9e234a0..69a1b5c 100644 --- a/gnio/gsocket.c +++ b/gnio/gsocket.c @@ -198,6 +198,13 @@ g_socket_class_init (GSocketClass *klass) 10, G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NICK)); + g_object_class_install_property (gobject_class, PROP_REUSE_ADDRESS, + g_param_spec_boolean ("reuse-address", + "reuse address", + "allow reuse of local addresses when binding", + FALSE, + G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NICK)); + g_object_class_install_property (gobject_class, PROP_LOCAL_ADDRESS, g_param_spec_object ("local-address", "local address", -- 2.20.1