Commit c31a8133 authored by Mirsal Ennaime's avatar Mirsal Ennaime

UPnP services discovery: Remove a useless function

parent 3d5ff7dc
...@@ -254,7 +254,6 @@ private: ...@@ -254,7 +254,6 @@ private:
static int Open( vlc_object_t* ); static int Open( vlc_object_t* );
static void Close( vlc_object_t* ); static void Close( vlc_object_t* );
static void Run( services_discovery_t *p_sd );
// Module descriptor // Module descriptor
...@@ -334,20 +333,6 @@ static void Close( vlc_object_t *p_this ) ...@@ -334,20 +333,6 @@ static void Close( vlc_object_t *p_this )
free( p_sd->p_sys ); free( p_sd->p_sys );
} }
static void Run( services_discovery_t* p_sd )
{
msg_Dbg( p_sd, "UPnP discovery started" );
while( vlc_object_alive (p_sd) )
{
msleep( 500 );
}
msg_Dbg( p_sd, "UPnP discovery stopped" );
}
// XML utility functions: // XML utility functions:
// Returns the value of a child element, or 0 on error // Returns the value of a child element, or 0 on error
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment