Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
cbef7d0c
Commit
cbef7d0c
authored
Jan 05, 2012
by
Hugo Beauzée-Luyssen
Committed by
Jean-Baptiste Kempf
Jan 06, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dash: HTTPConnectionManager: Removing useless method.
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
73b30f55
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
8 deletions
+0
-8
modules/stream_filter/dash/http/HTTPConnectionManager.cpp
modules/stream_filter/dash/http/HTTPConnectionManager.cpp
+0
-7
modules/stream_filter/dash/http/HTTPConnectionManager.h
modules/stream_filter/dash/http/HTTPConnectionManager.h
+0
-1
No files found.
modules/stream_filter/dash/http/HTTPConnectionManager.cpp
View file @
cbef7d0c
...
@@ -46,13 +46,6 @@ HTTPConnectionManager::~HTTPConnectionManager ()
...
@@ -46,13 +46,6 @@ HTTPConnectionManager::~HTTPConnectionManager ()
this
->
closeAllConnections
();
this
->
closeAllConnections
();
}
}
IHTTPConnection
*
HTTPConnectionManager
::
getConnection
(
std
::
string
url
)
{
HTTPConnection
*
con
=
new
HTTPConnection
(
url
,
this
->
stream
);
con
->
init
();
this
->
connections
.
push_back
(
con
);
return
con
;
}
bool
HTTPConnectionManager
::
closeConnection
(
IHTTPConnection
*
con
)
bool
HTTPConnectionManager
::
closeConnection
(
IHTTPConnection
*
con
)
{
{
for
(
std
::
vector
<
HTTPConnection
*>::
iterator
it
=
this
->
connections
.
begin
();
it
!=
this
->
connections
.
end
();
++
it
)
for
(
std
::
vector
<
HTTPConnection
*>::
iterator
it
=
this
->
connections
.
begin
();
it
!=
this
->
connections
.
end
();
++
it
)
...
...
modules/stream_filter/dash/http/HTTPConnectionManager.h
View file @
cbef7d0c
...
@@ -50,7 +50,6 @@ namespace dash
...
@@ -50,7 +50,6 @@ namespace dash
void
closeAllConnections
();
void
closeAllConnections
();
bool
closeConnection
(
IHTTPConnection
*
con
);
bool
closeConnection
(
IHTTPConnection
*
con
);
IHTTPConnection
*
getConnection
(
std
::
string
url
);
int
read
(
Chunk
*
chunk
,
void
*
p_buffer
,
size_t
len
);
int
read
(
Chunk
*
chunk
,
void
*
p_buffer
,
size_t
len
);
int
peek
(
Chunk
*
chunk
,
const
uint8_t
**
pp_peek
,
size_t
i_peek
);
int
peek
(
Chunk
*
chunk
,
const
uint8_t
**
pp_peek
,
size_t
i_peek
);
void
attach
(
dash
::
logic
::
IDownloadRateObserver
*
observer
);
void
attach
(
dash
::
logic
::
IDownloadRateObserver
*
observer
);
...
...
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