Skip to content
Sign up
Product
Features
Mobile
Actions
Codespaces
Copilot
Packages
Security
Code review
Issues
Integrations
GitHub Sponsors
Customer stories
Team
Enterprise
Explore
Explore GitHub
Learn and contribute
Topics
Collections
Trending
Skills
GitHub Sponsors
Open source guides
Connect with others
The ReadME Project
Events
Community forum
GitHub Education
GitHub Stars program
Marketplace
Pricing
Plans
Compare plans
Contact Sales
Education
In this repository
All GitHub
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub
↵
Jump to
↵
In this organization
All GitHub
↵
Jump to
↵
In this repository
All GitHub
↵
Jump to
↵
Sign in
Sign up
{{ message }}
apache
/
httpcomponents-client
Public
Notifications
Fork
826
Star
1.2k
Code
Pull requests
0
Actions
Projects
0
Security
Insights
More
Code
Pull requests
Actions
Projects
Security
Insights
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fix infinite recursion in SSLConnectionSocketFactory
Loading branch information
rschmitt
authored and
ok2c
committed
Mar 23, 2022
1 parent
f00ce5d
commit
c395aad5adb4e9ee312559937c08382ea8215e7c
Showing
1 changed file
with
1 addition
and
1 deletion
.
Split
Unified
There are no files selected for viewing
2
httpclient5/src/main/java/org/apache/hc/client5/http/ssl/SSLConnectionSocketFactory.java
Show comments
View file
Edit file
Delete file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
@@ -257,7 +257,7 @@ public Socket createLayeredSocket(
final
String
target
,
final
int
port
,
final
HttpContext
context
)
throws
IOException
{
return
createLayeredSocket
(
socket
,
target
,
port
,
context
);
return
createLayeredSocket
(
socket
,
target
,
port
,
null
,
context
);
}
@
Override
Toggle all file notes
Toggle all file annotations
0 comments on commit
c395aad
Please
sign in
to comment.
You can’t perform that action at this time.
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.