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

Write salt/iv, addr together with content #160

Closed

Commits on Jan 2, 2020

  1. write salt/iv, addr together with content

    Sending salt, address and content seperately would generate three packets
    at the start of a connection. Since the size of salt is almost always 8, 16 or 32,
    it leaves a strong feature.
    Additionally, with TCP fastopen turned on, only the first write would be carried by
    SYN packet. Writing multiple times makes it pointless.
    Anonymous-Someneese committed Jan 2, 2020
    Configuration menu
    Copy the full SHA
    5da880b View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2020

  1. wrap the cipher conn instead of local side conn

    This decouples two sides and allow easier third party integration.
    Anonymous-Someneese committed Jan 3, 2020
    Configuration menu
    Copy the full SHA
    eb0109a View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2020

  1. send header after 5ms if no content is received

    Anonymous-Someneese committed Jan 7, 2020
    Configuration menu
    Copy the full SHA
    310a1b2 View commit details
    Browse the repository at this point in the history