Bee is a Swarm client implemented in Go. It’s the basic building block for the Swarm network: a private; decentralized; and self-sustaining network for permissionless publishing and access to your (application) data.
With latest bee, adding p2p-ws-enable: true does not result in websocket underlay appearing in /addresses endpoint.
Furthermore, even if the if option.wsEnabled conditions are removed, ws underlay still does not appear. Workaround involved removing tcp transport / listen address for tcp, which interestingly resulted in ws underlay appearing in /addresses endpoint.
it's probably because of tcp.DisableReuseport() on the TCP transport and not having a different default port nor being able to specify a different port for WS through config
With latest bee, adding p2p-ws-enable: true does not result in websocket underlay appearing in /addresses endpoint. Furthermore, even if the if option.wsEnabled conditions are removed, ws underlay still does not appear. Workaround involved removing tcp transport / listen address for tcp, which interestingly resulted in ws underlay appearing in /addresses endpoint.