We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5757bc0 commit bd7e27eCopy full SHA for bd7e27e
ssh/agent/client.go
@@ -226,7 +226,9 @@ var ErrExtensionUnsupported = errors.New("agent: extension unsupported")
226
227
type extensionAgentMsg struct {
228
ExtensionType string `sshtype:"27"`
229
- Contents []byte
+ // NOTE: this matches OpenSSH's PROTOCOL.agent, not the IETF draft [PROTOCOL.agent],
230
+ // so that it matches what OpenSSH actually implements in the wild.
231
+ Contents []byte `ssh:"rest"`
232
}
233
234
// Key represents a protocol 2 public key as defined in
0 commit comments