(ctx context.Context, _ string, rawConn net.Conn)
| 2684 | } |
| 2685 | |
| 2686 | func (ac *attrTransportCreds) ClientHandshake(ctx context.Context, _ string, rawConn net.Conn) (net.Conn, credentials.AuthInfo, error) { |
| 2687 | ai := credentials.ClientHandshakeInfoFromContext(ctx) |
| 2688 | ac.attr = ai.Attributes |
| 2689 | return rawConn, nil, nil |
| 2690 | } |
| 2691 | func (ac *attrTransportCreds) Info() credentials.ProtocolInfo { |
| 2692 | return credentials.ProtocolInfo{} |
| 2693 | } |
nothing calls this directly
no test coverage detected