Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
VLC-iOS
Commits
d4880b5d
Commit
d4880b5d
authored
Jan 12, 2014
by
Felix Paul Kühne
Browse files
local network: disable SAP discovery as the module wasn't relicensed in time for release
parent
c283f254
Changes
2
Hide whitespace changes
Inline
Side-by-side
NEWS
View file @
d4880b5d
...
...
@@ -41,8 +41,6 @@ Local network:
* Added support for downloading from UPnP multimedia servers
* Added cover-art and duration to UPnP server item lists
* UPnP stability improvements
* Added support for media broadcasted with the Session Announcement Protocol
(SAP) information on the local network. Requires iOS 7 or later. (#9429)
* Fix incorrect displayed size for files stored on UPnP multimedia servers
larger than 2147.48 MB (#9641)
* Improved WiFi Upload reliability, especially when uploading multiple
...
...
Sources/VLCLocalServerListViewController.m
View file @
d4880b5d
...
...
@@ -76,9 +76,9 @@
{
[
super
viewDidLoad
];
if
(
SYSTEM_RUNS_IOS7_OR_LATER
)
/*
if (SYSTEM_RUNS_IOS7_OR_LATER)
_sectionHeaderTexts = @[@"Universal Plug'n'Play (UPNP)", @"File Transfer Protocol (FTP)", @"Network Streams (SAP)"];
else
else
*/
_sectionHeaderTexts
=
@[
@"Universal Plug'n'Play (UPNP)"
,
@"File Transfer Protocol (FTP)"
];
_backToMenuButton
=
[
UIBarButtonItem
themedRevealMenuButtonWithTarget
:
self
andSelector
:
@selector
(
goBack
:
)];
...
...
@@ -442,8 +442,7 @@
-
(
void
)
_startSAPDiscovery
{
if
(
!
SYSTEM_RUNS_IOS7_OR_LATER
)
return
;
return
;
if
(
_reachability
.
currentReachabilityStatus
!=
ReachableViaWiFi
)
return
;
...
...
@@ -454,8 +453,7 @@
-
(
void
)
_stopSAPDiscovery
{
if
(
!
SYSTEM_RUNS_IOS7_OR_LATER
)
return
;
return
;
_sapDiscoverer
=
nil
;
}
...
...
Write
Preview
Supports
Markdown
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