Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

peer: simplify MsgRouter with new fn tools #9010

Commits on Aug 14, 2024

  1. peer: add new abstract message router

    In this commit, we add a new abstract message router. Over time, the
    goal is that this message router replaces the logic we currently have in
    the readHandler (the giant switch for each message).
    
    With this new abstraction, can reduce the responsibilities of the
    readHandler to *just* reading messages off the wire and handing them off
    to the msg router. The readHandler no longer needs to know *where* the
    messages should go, or how they should be dispatched.
    
    This will be used in tandem with the new `protofsm` module in an
    upcoming PR implementing the new rbf-coop close.
    Roasbeef committed Aug 14, 2024
    Configuration menu
    Copy the full SHA
    511c068 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2024

  1. Configuration menu
    Copy the full SHA
    1a45715 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7d34af1 View commit details
    Browse the repository at this point in the history