Is there a way to setup default namespace '/'?
If I fire:
io.setupNamespace('/', function (nsp) { }
It is called for default namespace but if I use middleware inside it's called for all custom namespaces too.
What I want to achieve is – disallow connections to no namespace. My idea was – decline connection with error in middleware. Any idea?