Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pve-manager
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
pve-manager
Commits
e6208183
Commit
e6208183
authored
Oct 29, 2013
by
Dietmar Maurer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
subscription updates: set UserAgent header on proxy connect request
parent
f8cfbf75
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
Subscription.pm
PVE/API2/Subscription.pm
+3
-0
No files found.
PVE/API2/Subscription.pm
View file @
e6208183
...
@@ -4,6 +4,7 @@ use strict;
...
@@ -4,6 +4,7 @@ use strict;
use
warnings
;
use
warnings
;
use
Digest::
MD5
qw(md5_hex md5_base64)
;
use
Digest::
MD5
qw(md5_hex md5_base64)
;
use
MIME::
Base64
;
use
MIME::
Base64
;
use
Net::
SSL
;
use
HTTP::
Request
;
use
HTTP::
Request
;
use
LWP::
UserAgent
;
use
LWP::
UserAgent
;
use
JSON
;
use
JSON
;
...
@@ -231,6 +232,8 @@ sub check_subscription {
...
@@ -231,6 +232,8 @@ sub check_subscription {
local
(
$ENV
{
HTTPS_PROXY
},
$ENV
{
HTTPS_PROXY_USERNAME
},
$ENV
{
HTTPS_PROXY_PASSWORD
});
local
(
$ENV
{
HTTPS_PROXY
},
$ENV
{
HTTPS_PROXY_USERNAME
},
$ENV
{
HTTPS_PROXY_PASSWORD
});
if
(
$proxy
)
{
if
(
$proxy
)
{
# some proxies reject connection if UserAgent header is not set
Net::SSL::
send_useragent_to_proxy
(
1
);
(
$ENV
{
HTTPS_PROXY
},
$ENV
{
HTTPS_PROXY_USERNAME
},
$ENV
{
HTTPS_PROXY_PASSWORD
})
=
(
$ENV
{
HTTPS_PROXY
},
$ENV
{
HTTPS_PROXY_USERNAME
},
$ENV
{
HTTPS_PROXY_PASSWORD
})
=
PVE::API2Tools::
parse_http_proxy
(
$proxy
);
PVE::API2Tools::
parse_http_proxy
(
$proxy
);
$ua
->
proxy
(['
http
'],
$proxy
);
$ua
->
proxy
(['
http
'],
$proxy
);
...
...
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