diff --git a/gst/tcp/gsttcpserversink.c b/gst/tcp/gsttcpserversink.c index f257f5710e..c45d0ba9a3 100644 --- a/gst/tcp/gsttcpserversink.c +++ b/gst/tcp/gsttcpserversink.c @@ -87,6 +87,8 @@ gst_tcp_server_sink_class_init (GstTCPServerSinkClass * klass) gobject_class->get_property = gst_tcp_server_sink_get_property; gobject_class->finalize = gst_tcp_server_sink_finalize; + /* FIXME 2.0: Rename this to bind-address, host does not make much + * sense here */ g_object_class_install_property (gobject_class, PROP_HOST, g_param_spec_string ("host", "host", "The host/IP to listen on", TCP_DEFAULT_HOST, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); diff --git a/gst/tcp/gsttcpserversrc.c b/gst/tcp/gsttcpserversrc.c index 20154b427a..141181dcf8 100644 --- a/gst/tcp/gsttcpserversrc.c +++ b/gst/tcp/gsttcpserversrc.c @@ -98,6 +98,8 @@ gst_tcp_server_src_class_init (GstTCPServerSrcClass * klass) gobject_class->get_property = gst_tcp_server_src_get_property; gobject_class->finalize = gst_tcp_server_src_finalize; + /* FIXME 2.0: Rename this to bind-address, host does not make much + * sense here */ g_object_class_install_property (gobject_class, PROP_HOST, g_param_spec_string ("host", "Host", "The hostname to listen as", TCP_DEFAULT_LISTEN_HOST, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));