DefaultClientOptions creates a new ClientOptions object with the default values.
()
| 109 | // DefaultClientOptions creates a new ClientOptions object with the default |
| 110 | // values. |
| 111 | func DefaultClientOptions() *ClientOptions { |
| 112 | return &ClientOptions{ |
| 113 | HandshakerServiceAddress: hypervisorHandshakerServiceAddress, |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | // ServerOptions contains the server-side options of an ALTS channel. These |
| 118 | // options will be passed to the underlying ALTS handshaker. |
no outgoing calls