Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
8b5235d6
Commit
8b5235d6
authored
May 22, 2003
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/control/http.c: strings for the address and the port variable were switched.
parent
14330d8a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/control/http.c
modules/control/http.c
+3
-3
No files found.
modules/control/http.c
View file @
8b5235d6
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* http.c : http remote control plugin for vlc
* http.c : http remote control plugin for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* Copyright (C) 2001 VideoLAN
* $Id: http.c,v 1.
6 2003/05/15 22:27:37 massiot
Exp $
* $Id: http.c,v 1.
7 2003/05/22 15:34:02 hartman
Exp $
*
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
*
...
@@ -80,8 +80,8 @@ struct intf_sys_t
...
@@ -80,8 +80,8 @@ struct intf_sys_t
vlc_module_begin
();
vlc_module_begin
();
add_category_hint
(
N_
(
"HTTP remote control"
),
NULL
,
VLC_TRUE
);
add_category_hint
(
N_
(
"HTTP remote control"
),
NULL
,
VLC_TRUE
);
add_string
(
"http-addr"
,
NULL
,
NULL
,
PORT_TEXT
,
PORT
_LONGTEXT
,
VLC_TRUE
);
add_string
(
"http-addr"
,
NULL
,
NULL
,
ADDR_TEXT
,
ADDR
_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"http-port"
,
8080
,
NULL
,
ADDR_TEXT
,
ADDR
_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"http-port"
,
8080
,
NULL
,
PORT_TEXT
,
PORT
_LONGTEXT
,
VLC_TRUE
);
set_description
(
_
(
"HTTP remote control interface"
)
);
set_description
(
_
(
"HTTP remote control interface"
)
);
set_capability
(
"interface"
,
10
);
set_capability
(
"interface"
,
10
);
set_callbacks
(
Activate
,
Close
);
set_callbacks
(
Activate
,
Close
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment