Files
teleport/lib/sshagent/doc.go
T
Brian Joerger 984e54a7e6 fix: Agent Forwarding - Windows System Agent and 1Password agent (#57243)
* 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.
2025-08-04 18:04:11 +00:00

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