This repository was archived by the owner on Feb 12, 2024. It is now read-only.
This repository was archived by the owner on Feb 12, 2024. It is now read-only.
daemon chokes on ip4 and ip6 on same port #228
Closed
Description
given my go-ipfs generated config:
"Addresses": {
"Swarm": [
"/ip4/0.0.0.0/tcp/4001",
"/ip6/::/tcp/4001"
],
"API": "/ip4/127.0.0.1/tcp/5001",
"Gateway": "/ip4/127.0.0.1/tcp/8080"
},
running the js-ipfs daemon will die with
Initializing daemon...
Starting at /home/noffle/.ipfs
Finished loading
error listen EADDRINUSE :::4001
Works fine if I remove the /ip6
address.