Commit 3de8decd authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* modules/control/telnet/telnet.c:

  - announce the port used by telnet in the messages
parent f0156a28
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* telnet.c: VLM interface plugin * telnet.c: VLM interface plugin
***************************************************************************** *****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN * Copyright (C) 2000, 2001 VideoLAN
* $Id: telnet.c,v 1.1 2004/03/05 14:03:20 garf Exp $ * $Id$
* *
* Authors: Simon Latapie <garf@videolan.org> * Authors: Simon Latapie <garf@videolan.org>
* Laurent Aimar <fenrir@videolan.org> * Laurent Aimar <fenrir@videolan.org>
...@@ -164,6 +164,8 @@ static int Open( vlc_object_t *p_this ) ...@@ -164,6 +164,8 @@ static int Open( vlc_object_t *p_this )
free( p_intf->p_sys ); free( p_intf->p_sys );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
msg_Info( p_intf, _("Telnet interface started on port: %d"), i_telnetport );
p_intf->p_sys->i_clients = 0; p_intf->p_sys->i_clients = 0;
p_intf->p_sys->clients = NULL; p_intf->p_sys->clients = NULL;
p_intf->p_sys->mediatheque = vlm_New( p_intf ); p_intf->p_sys->mediatheque = vlm_New( p_intf );
......
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