Skip to content
This repository has been archived by the owner on Nov 15, 2019. It is now read-only.

resolves #1073: integrate socket collection #1083

Merged

Commits on Dec 12, 2018

  1. Configuration menu
    Copy the full SHA
    74c089e View commit details
    Browse the repository at this point in the history
  2. fix/misc: update socket readiness

    We replaced common::Socket with TcpSock from socket-collection. Then some tests
    started failing. Turned out that common::Socket did a little trick after every
    write(): it used to always reregister socket for Readable events. So we try
    to retain the same behavior with TcpSock as well by reregistering socket readiness
    manually where needed.
    povilasb committed Dec 12, 2018
    Configuration menu
    Copy the full SHA
    d98cf2b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6198666 View commit details
    Browse the repository at this point in the history
  4. refactor/connect: remove dead code

    TCP listener was never used in case of direct connections. Hence, remove it.
    povilasb committed Dec 12, 2018
    Configuration menu
    Copy the full SHA
    3a079e1 View commit details
    Browse the repository at this point in the history
  5. refactor/service_discovery: remove packet buffering

    socket_collection::UdpSock buffers the packets itself so no need to do that from the app layer.
    We just make sure to UdpSock::write_to(None) when socket becomes writable.
    povilasb committed Dec 12, 2018
    Configuration menu
    Copy the full SHA
    9ffedd6 View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2018

  1. fix/service_discovery: don't terminate the server, if one message is …

    …invalid
    
    Also, includes some refactoring related to message sending.
    povilasb committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    70e08cb View commit details
    Browse the repository at this point in the history