mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-11 16:14:05 -08:00
375ad1185c
* *: bump gRPC dependencies This change updates the gRPC dependencies to more recent versions: * github.com/gogo/protobuf => v1.2.0 * github.com/grpc-ecosystem/grpc-gateway => v1.6.3 * google.golang.org/grpc => v1.17.0 In addition scripts/genproto.sh leverages Go modules information instead of hardcoding SHA1 commits. This ensures that the code is generated from the exact same sources. Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Run 'make proto' in CI Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Revert tabs -> spaces change Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Fix 'make proto' step Signed-off-by: Simon Pasquier <spasquie@redhat.com> * 'go get' grpc/protobuf dependencies Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Prepopulate cache with go mod download Signed-off-by: Simon Pasquier <spasquie@redhat.com>
57 lines
1.3 KiB
Go
57 lines
1.3 KiB
Go
// Copyright 2013 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package ipv6
|
|
|
|
// TrafficClass returns the traffic class field value for outgoing
|
|
// packets.
|
|
func (c *genericOpt) TrafficClass() (int, error) {
|
|
if !c.ok() {
|
|
return 0, errInvalidConn
|
|
}
|
|
so, ok := sockOpts[ssoTrafficClass]
|
|
if !ok {
|
|
return 0, errOpNoSupport
|
|
}
|
|
return so.GetInt(c.Conn)
|
|
}
|
|
|
|
// SetTrafficClass sets the traffic class field value for future
|
|
// outgoing packets.
|
|
func (c *genericOpt) SetTrafficClass(tclass int) error {
|
|
if !c.ok() {
|
|
return errInvalidConn
|
|
}
|
|
so, ok := sockOpts[ssoTrafficClass]
|
|
if !ok {
|
|
return errOpNoSupport
|
|
}
|
|
return so.SetInt(c.Conn, tclass)
|
|
}
|
|
|
|
// HopLimit returns the hop limit field value for outgoing packets.
|
|
func (c *genericOpt) HopLimit() (int, error) {
|
|
if !c.ok() {
|
|
return 0, errInvalidConn
|
|
}
|
|
so, ok := sockOpts[ssoHopLimit]
|
|
if !ok {
|
|
return 0, errOpNoSupport
|
|
}
|
|
return so.GetInt(c.Conn)
|
|
}
|
|
|
|
// SetHopLimit sets the hop limit field value for future outgoing
|
|
// packets.
|
|
func (c *genericOpt) SetHopLimit(hoplim int) error {
|
|
if !c.ok() {
|
|
return errInvalidConn
|
|
}
|
|
so, ok := sockOpts[ssoHopLimit]
|
|
if !ok {
|
|
return errOpNoSupport
|
|
}
|
|
return so.SetInt(c.Conn, hoplim)
|
|
}
|