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

ssh: allow dialing named services in addition to port numbers #235

Open
wants to merge 16 commits into
base: master
Choose a base branch
from

Commits on Oct 18, 2022

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

Commits on Oct 6, 2023

  1. add tests

    HouseK committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    4ad08cc View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2023

  1. Configuration menu
    Copy the full SHA
    35b875b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e37048c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3cddb69 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    41a84b0 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2023

  1. all: update go directive to 1.18

    Done with:
    
    go get go@1.18
    go mod tidy
    go fix ./...
    
    Using go1.21.3.
    
    Also update avo to v0.5.0 in the curve25519/internal/field/_asm module.
    It's newer and produces no diff in the generated code.
    
    For golang/go#60268.
    
    Change-Id: I9bd771ee8561595d7f68aaca76df6e3e33d35013
    Reviewed-on: https://go-review.googlesource.com/c/crypto/+/534141
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Damien Neil <dneil@google.com>
    Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
    Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
    dmitshur authored and HouseK committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    d219d02 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ee18608 View commit details
    Browse the repository at this point in the history
  3. defer close pipe

    HouseK committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    53e97f4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7bcfdde View commit details
    Browse the repository at this point in the history
  5. reuse channelOpenDirectMsg

    HouseK committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    612be71 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2023

  1. clean up tests

    HouseK committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    6b972a0 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. Configuration menu
    Copy the full SHA
    9da4131 View commit details
    Browse the repository at this point in the history
  2. update Dial method comment

    HouseK committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    127a3e6 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2023

  1. ssh: add (*Client).DialContext method

    This change adds DialContext to ssh.Client, which opens a TCP-IP
    connection tunneled over the SSH connection. This is useful for
    proxying network connections, e.g. setting
    (net/http.Transport).DialContext.
    
    Fixes golang/go#20288.
    
    Change-Id: I110494c00962424ea803065535ebe2209364ac27
    GitHub-Last-Rev: 3176984
    GitHub-Pull-Request: golang#260
    Reviewed-on: https://go-review.googlesource.com/c/crypto/+/504735
    Run-TryBot: Nicola Murino <nicola.murino@gmail.com>
    Run-TryBot: Han-Wen Nienhuys <hanwen@google.com>
    Auto-Submit: Nicola Murino <nicola.murino@gmail.com>
    Reviewed-by: Han-Wen Nienhuys <hanwen@google.com>
    Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
    TryBot-Result: Gopher Robot <gobot@golang.org>
    Reviewed-by: Nicola Murino <nicola.murino@gmail.com>
    Commit-Queue: Nicola Murino <nicola.murino@gmail.com>
    HouseK committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    40517c7 View commit details
    Browse the repository at this point in the history
  2. use context in lookup port

    HouseK committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    f2112bf View commit details
    Browse the repository at this point in the history