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

Tcp socket from std stream #3838

Merged
merged 6 commits into from Jun 11, 2021

Commits on Jun 5, 2021

  1. Copy the full SHA
    28eb241 View commit details
    Browse the repository at this point in the history
  2. convert std TcpStream into TcpSocket

    This converts the TcpStream into the platform
    specific raw_fd(unix) / raw_socket(windows)
    and then converts them into the TcpSocket
    as TcpSocket implements the FromRawFd(unix) and
    FromRawSocket(windows) traits.
    
    Fixes: tokio-rs#3734
    AtulJatia committed Jun 5, 2021
    Copy the full SHA
    bab7c2c View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    01e54bb View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2021

  1. Review changes

    AtulJatia committed Jun 8, 2021
    Copy the full SHA
    309036d View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2021

  1. Review changes

    AtulJatia committed Jun 10, 2021
    Copy the full SHA
    629876a View commit details
    Browse the repository at this point in the history
  2. Fixed documentation tests

    AtulJatia committed Jun 10, 2021
    Copy the full SHA
    8057f89 View commit details
    Browse the repository at this point in the history