(ctx context.Context, _ string, rawConn net.Conn)
| 361 | } |
| 362 | |
| 363 | func (ac *attrTransportCreds) ClientHandshake(ctx context.Context, _ string, rawConn net.Conn) (net.Conn, credentials.AuthInfo, error) { |
| 364 | ai := credentials.ClientHandshakeInfoFromContext(ctx) |
| 365 | ac.attr = ai.Attributes |
| 366 | return rawConn, nil, nil |
| 367 | } |
| 368 | func (ac *attrTransportCreds) Info() credentials.ProtocolInfo { |
| 369 | return credentials.ProtocolInfo{} |
| 370 | } |
nothing calls this directly
no test coverage detected