Skip to content

Commit

Permalink
[dubboctl] add docker api agent and ssh logic (#575)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfordjody authored Feb 3, 2025
1 parent 68f012f commit c8808ca
Show file tree
Hide file tree
Showing 3 changed files with 404 additions and 1 deletion.
12 changes: 12 additions & 0 deletions dubboctl/pkg/mirror/ssh/agent.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
//go:build !windows
// +build !windows

package ssh

import (
"net"
)

func dialSSHAgentConnection(sock string) (agentConn net.Conn, error error) {
return net.Dial("unix", sock)
}
Loading

0 comments on commit c8808ca

Please sign in to comment.