Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Core
Tor
Commits
298e0813
Commit
298e0813
authored
13 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'public/bug4760'
parents
77a7a980
dd68d596
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changes/bug4760
+4
-0
4 additions, 0 deletions
changes/bug4760
src/or/connection.c
+19
-0
19 additions, 0 deletions
src/or/connection.c
with
23 additions
and
0 deletions
changes/bug4760
0 → 100644
+
4
−
0
View file @
298e0813
o Minor bugfixes:
- When binding to an IPv6 address, set the IPV6_V6ONLY socket
option, so that the IP stack doesn't decide to use it for IPv4
too. Fixes bug 4760; bugfix on 0.2.3.9-alpha.
This diff is collapsed.
Click to expand it.
src/or/connection.c
+
19
−
0
View file @
298e0813
...
...
@@ -902,6 +902,25 @@ connection_listener_new(const struct sockaddr *listensockaddr,
make_socket_reuseable
(
s
);
#ifdef IPV6_V6ONLY
if
(
listensockaddr
->
sa_family
==
AF_INET6
)
{
#ifdef _WIN32
/* In Redmond, this kind of thing passes for standards-conformance. */
DWORD
one
=
1
;
#else
int
one
=
1
;
#endif
/* We need to set IPV6_V6ONLY so that this socket can't get used for
* IPv4 connections. */
if
(
setsockopt
(
s
,
IPPROTO_IPV6
,
IPV6_V6ONLY
,
(
void
*
)
&
one
,
sizeof
(
one
))
<
0
)
{
int
e
=
tor_socket_errno
(
s
);
log_warn
(
LD_NET
,
"Error setting IPV6_V6ONLY flag: %s"
,
tor_socket_strerror
(
e
));
/* Keep going; probably not harmful. */
}
}
#endif
if
(
bind
(
s
,
listensockaddr
,
socklen
)
<
0
)
{
const
char
*
helpfulhint
=
""
;
int
e
=
tor_socket_errno
(
s
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment