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
f72b63df
Commit
f72b63df
authored
11 years ago
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src/darwin: reformat code to fit the character limit in place in those code parts
parent
b3efcf71
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
7 deletions
+25
-7
src/darwin/netconf.c
src/darwin/netconf.c
+25
-7
No files found.
src/darwin/netconf.c
View file @
f72b63df
...
...
@@ -43,25 +43,43 @@ char *vlc_getProxyUrl(const char *url)
char
*
proxy_url
=
NULL
;
if
(
proxies
)
{
CFNumberRef
cfn_httpProxyOn
=
(
CFNumberRef
)
CFDictionaryGetValue
(
proxies
,
kSCPropNetProxiesHTTPEnable
);
CFNumberRef
cfn_httpProxyOn
=
(
CFNumberRef
)
CFDictionaryGetValue
(
proxies
,
kSCPropNetProxiesHTTPEnable
);
int
i_httpProxyOn
;
CFNumberGetValue
(
cfn_httpProxyOn
,
kCFNumberIntType
,
&
i_httpProxyOn
);
CFRelease
(
cfn_httpProxyOn
);
if
(
i_httpProxyOn
==
1
)
// http proxy is on
{
CFStringRef
httpProxy
=
(
CFStringRef
)
CFDictionaryGetValue
(
proxies
,
kSCPropNetProxiesHTTPProxy
);
CFStringRef
httpProxy
=
(
CFStringRef
)
CFDictionaryGetValue
(
proxies
,
kSCPropNetProxiesHTTPProxy
);
if
(
httpProxy
)
{
CFNumberRef
cfn_httpProxyPort
=
(
CFNumberRef
)
CFDictionaryGetValue
(
proxies
,
kSCPropNetProxiesHTTPPort
);
CFNumberRef
cfn_httpProxyPort
=
(
CFNumberRef
)
CFDictionaryGetValue
(
proxies
,
kSCPropNetProxiesHTTPPort
);
int
i_httpProxyPort
;
CFNumberGetValue
(
cfn_httpProxyPort
,
kCFNumberIntType
,
&
i_httpProxyPort
);
CFNumberGetValue
(
cfn_httpProxyPort
,
kCFNumberIntType
,
&
i_httpProxyPort
);
CFRelease
(
cfn_httpProxyPort
);
CFMutableStringRef
outputURL
=
CFStringCreateMutableCopy
(
kCFAllocatorDefault
,
0
,
httpProxy
);
CFMutableStringRef
outputURL
=
CFStringCreateMutableCopy
(
kCFAllocatorDefault
,
0
,
httpProxy
);
if
(
i_httpProxyPort
>
0
)
CFStringAppendFormat
(
outputURL
,
NULL
,
CFSTR
(
":%i"
),
i_httpProxyPort
);
CFStringAppendFormat
(
outputURL
,
NULL
,
CFSTR
(
":%i"
),
i_httpProxyPort
);
CFStringGetCString
(
outputURL
,
proxy_url
,
sizeof
(
proxy_url
),
kCFStringEncodingASCII
);
CFStringGetCString
(
outputURL
,
proxy_url
,
sizeof
(
proxy_url
),
kCFStringEncodingASCII
);
CFRelease
(
outputURL
);
}
CFRelease
(
httpProxy
);
...
...
This diff is collapsed.
Click to expand it.
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