diff options
author | phintuka <phintuka> | 2007-06-11 19:14:02 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2007-06-11 19:14:02 +0000 |
commit | 9f94640b9fe2e2f7c0cd056f10e4f8e633123603 (patch) | |
tree | 28d15e2d754d03f5d88ae752ad9ba339af19a0f3 | |
parent | 6208cf7ce9b652d4468e77a03b5823496f9546aa (diff) | |
download | xineliboutput-9f94640b9fe2e2f7c0cd056f10e4f8e633123603.tar.gz xineliboutput-9f94640b9fe2e2f7c0cd056f10e4f8e633123603.tar.bz2 |
Setup menu entry for local interface address
-rw-r--r-- | setup_menu.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/setup_menu.c b/setup_menu.c index db03d69b..f141a050 100644 --- a/setup_menu.c +++ b/setup_menu.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: setup_menu.c,v 1.30 2007-06-11 19:12:18 phintuka Exp $ + * $Id: setup_menu.c,v 1.31 2007-06-11 19:14:02 phintuka Exp $ * */ @@ -1348,6 +1348,8 @@ void cMenuSetupRemote::Set(void) Add(new cMenuEditIntItem( tr(" Listen port (TCP and broadcast)"), &newconfig.listen_port, 0, 0xffff)); + Add(new cMenuEditStrItem( tr(" Listen address"), + &newconfig.remote_local_ip[0], 16, "0123456789.")); Add(new cMenuEditBoolItem(tr(" Remote keyboard"), &newconfig.remote_keyboard)); |