mirror of
https://github.com/gravitational/teleport.git
synced 2026-09-24 16:17:11 +08:00
* Move lib/utils/agentconn to lib/sshagent. * Move system agent connection logic and logging to sshagent.DialSystemAgent; Update comments. * Retrieve a new system SSH agent connection for each agent forwarding channel request. * Add test. * Add type aliases to teleagent. * Remove unused function. * Revert import to fix go mod tidy error. * Fix flaky test. * Address comments. * Use context.After stop function; Fix unsafe wg.Wait call.
18 lines
760 B
Go
18 lines
760 B
Go
// Copyright 2025 Gravitational, Inc
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
// Package sshagent provides methods for connecting to and interfacing
|
|
// with SSH agents, for purposes such as key storage and agent forwarding.
|
|
package sshagent
|