meejah

Results 289 comments of meejah

Work is continuing on https://github.com/tavendo/AutobahnPython/tree/refactor-transport and feedback is appreciated on the API; there are examples showing its use.

Since this refactoring also involves TLS (among other) configuration, @oberstet and I had discussed "why would I want to pass a Twisted-native or asyncio-native (i.e. ssl.SSLContext) object"? Some use-cases would...

@om26er yes, Component supports this AFAIK.

Okay, looking again at the code, for Twisted, you can pass `endpoint=` to use any kind of endpoint you like (including Unix Domain Sockets). There is no such thing on...

It's probably worth noting that if the IDs are random the range needs to be enormous or else (due to birthday problem) if there are a large number of outstanding...

I think the aproximation for a collision is 2^(n/2)? I can look more closely at this later on but it should be sufficient to consider only the total number of...

With the javascript constraint, there'd have to be some sort of terrible hack like splitting the ID into two numbers or similar (i.e. giving 2^106). "Or something". Making the session-IDs...

Maybe 12 digits of base64-encoded data (2^72)?

It might be useful to write down (existing) use-cases for these

Hmm "different paths for Twisted vs asyncio" sounds bad. Are you saying that the Autobahn `_swallow_error` helper *doesn't* cancel the error in asyncio? Also, yeah `_swallow_error` is intended to be...