GitHub user dch opened a pull request:
https://github.com/apache/couchdb-ibrowse/pull/1
ibrowse: enable inet6 from upstream
presently it's not possible to use ibrowse client (e.g. during replication)
for
inet6-only hosts as the pattern match returned is insufficient. This patch
pulls in upstream's https://github.com/cmullaparthi/ibrowse/commit/555f7074
minimal diff.
```erl
Eshell V9.3.3.3 (abort with ^G)
1> inet:gethostbyname("wintermute.skunkwerks.at").
{error,nxdomain}
2> inet:gethostbyname("wintermute.skunkwerks.at", inet6).
{ok,{hostent,"wintermute.skunkwerks.at",[],inet6,16,
[{64635,50390,27618,36432,27800,0,0,1}]}}
```
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/skunkwerks/couchdb-ibrowse feature/add-inet6
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/couchdb-ibrowse/pull/1.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #1
----
commit 83199b202da46f0c6eed76bd1ff20652a676185d
Author: Dave Cottlehuber <dch@...>
Date: 2018-10-03T11:53:13Z
ibrowse: enable inet6 via
https://github.com/cmullaparthi/ibrowse/commit/555f7074
----
---