Skip to content
This repository was archived by the owner on Sep 20, 2021. It is now read-only.
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: hoaproject/Websocket
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.17.01.09
Choose a base ref
...
head repository: hoaproject/Websocket
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 14 commits
  • 29 files changed
  • 5 contributors

Commits on Aug 4, 2016

  1. Connection: Ensure disconnection on closing.

    If the node is not able to close properly, then the socket disconnection
    was not happening nicely. This patch catches errors from a node closing
    and ensure the socket disconnection all the time.
    Hywan committed Aug 4, 2016
    Configuration menu
    Copy the full SHA
    de5e650 View commit details
    Browse the repository at this point in the history
  2. Connection: If a normal close fails, no error.

    When a normal close is attempted and it fails because of several reasons
    (it is likely to be because the client might already be disconnected and
    then it is not possible to send messages to it), then this situation is
    not considered as an error.
    
    Indeed, the client has sent a normal close but it does not listen for
    the confirmation from the server. This is a protocol error but happening
    on closing.
    
    So instead of getting an exception when closing, catching this exception
    later and then firing an `error` event, this makes more sense to catch
    the exception, do nothing with it, and fire the expected `close` event.
    Hywan committed Aug 4, 2016
    Configuration menu
    Copy the full SHA
    934f949 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2017

  1. CI: Set up Travis.

    Hywan committed Mar 14, 2017
    Configuration menu
    Copy the full SHA
    74ce0c5 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2017

  1. Configuration menu
    Copy the full SHA
    c018385 View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2017

  1. Fire close event before closing and on error

    Firing the close event before closing allows for the user to grab the connection's unique ID. This is useful if the user is keeping track of connection based states across the lifecycle of a connection (e.g. session data).
    
    Fire the event on a protocol error as well before closing.
    jmdevince authored and Metalaka committed Mar 30, 2017
    Configuration menu
    Copy the full SHA
    834b4ab View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bead328 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2017

  1. chore(ci) Drop HHVM support.

    shulard committed Jul 7, 2017
    Configuration menu
    Copy the full SHA
    8a634eb View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2017

  1. chore(composer) add PHP version requirement

    Define minimal supported version of PHP needed into composer.json
    
    Address hoaproject/Central#70
    vonglasow committed Aug 4, 2017
    Configuration menu
    Copy the full SHA
    a2a5964 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2017

  1. chore(php) Update to PHP 7.

    Hywan committed Nov 8, 2017
    Configuration menu
    Copy the full SHA
    34ca9fc View commit details
    Browse the repository at this point in the history
  2. chore(php) Fix composer.

    Hywan committed Nov 8, 2017
    Configuration menu
    Copy the full SHA
    53b1f48 View commit details
    Browse the repository at this point in the history
  3. chore(php) Update to PHP 7.

    Hywan committed Nov 8, 2017
    Configuration menu
    Copy the full SHA
    f5cf84e View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2017

  1. chore(php) Update to PHP 7.

    Hywan committed Nov 10, 2017
    Configuration menu
    Copy the full SHA
    3fd0fcc View commit details
    Browse the repository at this point in the history
  2. chore(php) Update to PHP 7.

    Hywan committed Nov 10, 2017
    Configuration menu
    Copy the full SHA
    b8f0e12 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2018

  1. Configuration menu
    Copy the full SHA
    9029708 View commit details
    Browse the repository at this point in the history
Loading