Lines Matching refs:WithInsecure
84 // call WithInsecure DialOption to disable security.
85 errNoTransportSecurity = errors.New("grpc: no transport security set (use grpc.WithInsecure() explicitly or set credentials)")
91 // and grpc.WithInsecure() are both called for a connection.
92 errCredentialsConflict = errors.New("grpc: transport credentials are set for an insecure connection (grpc.WithTransportCredentials() and grpc.WithInsecure() are both called)")
307 // WithInsecure returns a DialOption which disables transport security for this ClientConn.
308 // Note that transport security is required unless WithInsecure is set.
309 func WithInsecure() DialOption {
413 // the :authority pseudo-header. This value only works with WithInsecure and