Variable Config.interfaces

Configuration for interfaces the node expose (only http for now)

struct Config
{
  // ...
  immutable(InterfaceConfig[]) interfaces = [InterfaceConfig(Type.tcp, "0.0.0.0", cast(ushort)2826u, false, false, true), InterfaceConfig(Type.http, "0.0.0.0", cast(ushort)8080u, false, false, true)];
  // ...
}