blob: 7bb53cff1011140a683026989e662e37ca432ec0 [file] [log] [blame]
khenaidoo5fc5cea2021-08-11 17:39:16 -04001/*
2 *
3 * Copyright 2020 gRPC authors.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 */
18
19// Package networktype declares the network type to be used in the default
20// dialer. Attribute of a resolver.Address.
21package networktype
22
23import (
24 "google.golang.org/grpc/resolver"
25)
26
27// keyType is the key to use for storing State in Attributes.
28type keyType string
29
30const key = keyType("grpc.internal.transport.networktype")
31
32// Set returns a copy of the provided address with attributes containing networkType.
33func Set(address resolver.Address, networkType string) resolver.Address {
34 address.Attributes = address.Attributes.WithValues(key, networkType)
35 return address
36}
37
38// Get returns the network type in the resolver.Address and true, or "", false
39// if not present.
40func Get(address resolver.Address) (string, bool) {
41 v := address.Attributes.Value(key)
42 if v == nil {
43 return "", false
44 }
45 return v.(string), true
46}