babl icon indicating copy to clipboard operation
babl copied to clipboard

Low-latency WebSocket Server

Results 20 babl issues
Sort by recently updated
recently updated
newest added

This is my attempt on exposing the request uri. I'd appreciate any feedback. Also a question, I added `requestUri` as type `varDataEncoding` to the `SessionOpened` sbe schema. While there are...

How would you implement a server endpoint? For example, client would connect to `ws://localhost:8080/myendpoint`, instead of just `ws://localhost:8080`. I assumed I'd have to implement this function myself inside `onSessionConnected`, but...

I'm exploring this library and it seems like I was not able to build the project with JDK 17 or JDK 11. I also had problems when I tried to...

Bumps vertx-web from 3.9.4 to 4.3.3. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.vertx:vertx-web&package-manager=gradle&previous-version=3.9.4&new-version=4.3.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

Bumps [junit-jupiter-engine](https://github.com/junit-team/junit5) from 5.7.1 to 5.9.0. Release notes Sourced from junit-jupiter-engine's releases. JUnit 5.9.0 = Platform 1.9.0 + Jupiter 5.9.0 + Vintage 5.9.0 See Release Notes. JUnit 5.9.0-RC1 = Platform...

dependencies

Bumps [junit-jupiter-api](https://github.com/junit-team/junit5) from 5.7.1 to 5.9.0. Release notes Sourced from junit-jupiter-api's releases. JUnit 5.9.0 = Platform 1.9.0 + Jupiter 5.9.0 + Vintage 5.9.0 See Release Notes. JUnit 5.9.0-RC1 = Platform...

dependencies

Bumps com.github.johnrengelman.shadow from 6.1.0 to 7.1.2. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.github.johnrengelman.shadow&package-manager=gradle&previous-version=6.1.0&new-version=7.1.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

Fix for Issue #97 The code was using Integer.toUnsignedLong for a short value which broke decoding for mid-sized packets.

When FrameDecoder determines the size of a medium-sized payload it uses Integer.toUnsignedLong() instead of Short.toUnsignedLong() potentially causing negative payload sizes and essentially breaking the connection.