Skip to content

Commit

Permalink
Merge pull request #2389 from cesanta/ipv6
Browse files Browse the repository at this point in the history
Address discussions/2305 - bind to v6 only / v6 and v4
  • Loading branch information
cpq authored Sep 21, 2023
2 parents 33ab444 + 00d475b commit b7a3206
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
3 changes: 2 additions & 1 deletion mongoose.c
Original file line number Diff line number Diff line change
Expand Up @@ -6062,7 +6062,8 @@ bool mg_open_listener(struct mg_connection *c, const char *url) {
// won't work! (setsockopt will return EINVAL)
MG_ERROR(("setsockopt(SO_REUSEADDR): %d", MG_SOCK_ERR(rc)));
#endif
#if defined(IPV6_V6ONLY)
#if MG_IPV6_V6ONLY
// Bind only to the V6 address, not V4 address on this port
} else if (c->loc.is_ip6 &&
(rc = setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, (char *) &on,
sizeof(on))) != 0) {
Expand Down
4 changes: 4 additions & 0 deletions mongoose.h
Original file line number Diff line number Diff line change
Expand Up @@ -709,6 +709,10 @@ struct timeval {
#define MG_ENABLE_IPV6 0
#endif

#ifndef MG_IPV6_V6ONLY
#define MG_IPV6_V6ONLY 0 // IPv6 socket binds only to V6, not V4 address
#endif

#ifndef MG_ENABLE_MD5
#define MG_ENABLE_MD5 1
#endif
Expand Down
4 changes: 4 additions & 0 deletions src/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
#define MG_ENABLE_IPV6 0
#endif

#ifndef MG_IPV6_V6ONLY
#define MG_IPV6_V6ONLY 0 // IPv6 socket binds only to V6, not V4 address
#endif

#ifndef MG_ENABLE_MD5
#define MG_ENABLE_MD5 1
#endif
Expand Down
3 changes: 2 additions & 1 deletion src/sock.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ bool mg_open_listener(struct mg_connection *c, const char *url) {
// won't work! (setsockopt will return EINVAL)
MG_ERROR(("setsockopt(SO_REUSEADDR): %d", MG_SOCK_ERR(rc)));
#endif
#if defined(IPV6_V6ONLY)
#if MG_IPV6_V6ONLY
// Bind only to the V6 address, not V4 address on this port
} else if (c->loc.is_ip6 &&
(rc = setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, (char *) &on,
sizeof(on))) != 0) {
Expand Down

0 comments on commit b7a3206

Please sign in to comment.