Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TooTallNate/Java-WebSocket
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: ubitricity/Java-WebSocket
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 4 commits
  • 3 files changed
  • 3 contributors

Commits on Nov 1, 2022

  1. Add support for passive connection lost checking

    When both ends of a WebSocket connection need to know when the
    connection is lost, both sending pings is redundant, as a received ping
    already indicates that the peer is still connected.
    
    Add an optional boolean parameter to the setConnectionLostTimeout()
    method, which when set to true makes the connection lost cheking
    passive, i.e. the check never sends out pings, but only checks whether
    an incoming ping was received recently enough.
    
    For passive connection lost checking, the peer must be known to do
    active connection lost checking with a timeout equal (or lower) than the
    one locally used.
    robert-s-ubi committed Nov 1, 2022
    Configuration menu
    Copy the full SHA
    f66c209 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2023

  1. Configuration menu
    Copy the full SHA
    9b17b74 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6d3c69b View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1 from ubitricity/support-other-http-error-codes

    Support other http error codes
    robert-s-ubi authored Nov 28, 2023
    Configuration menu
    Copy the full SHA
    6950895 View commit details
    Browse the repository at this point in the history
Loading