route/vendor/golang.org/x/net/ipv4/genericopt.go

58 lines
1.2 KiB
Go
Raw Normal View History

2017-03-26 19:50:20 +00:00
// Copyright 2012 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 ipv4
2017-09-30 16:47:47 +00:00
import "syscall"
2017-03-26 19:50:20 +00:00
// TOS returns the type-of-service field value for outgoing packets.
func (c *genericOpt) TOS() (int, error) {
if !c.ok() {
return 0, syscall.EINVAL
}
2017-09-30 16:47:47 +00:00
so, ok := sockOpts[ssoTOS]
if !ok {
return 0, errOpNoSupport
2017-03-26 19:50:20 +00:00
}
2017-09-30 16:47:47 +00:00
return so.GetInt(c.Conn)
2017-03-26 19:50:20 +00:00
}
// SetTOS sets the type-of-service field value for future outgoing
// packets.
func (c *genericOpt) SetTOS(tos int) error {
if !c.ok() {
return syscall.EINVAL
}
2017-09-30 16:47:47 +00:00
so, ok := sockOpts[ssoTOS]
if !ok {
return errOpNoSupport
2017-03-26 19:50:20 +00:00
}
2017-09-30 16:47:47 +00:00
return so.SetInt(c.Conn, tos)
2017-03-26 19:50:20 +00:00
}
// TTL returns the time-to-live field value for outgoing packets.
func (c *genericOpt) TTL() (int, error) {
if !c.ok() {
return 0, syscall.EINVAL
}
2017-09-30 16:47:47 +00:00
so, ok := sockOpts[ssoTTL]
if !ok {
return 0, errOpNoSupport
2017-03-26 19:50:20 +00:00
}
2017-09-30 16:47:47 +00:00
return so.GetInt(c.Conn)
2017-03-26 19:50:20 +00:00
}
// SetTTL sets the time-to-live field value for future outgoing
// packets.
func (c *genericOpt) SetTTL(ttl int) error {
if !c.ok() {
return syscall.EINVAL
}
2017-09-30 16:47:47 +00:00
so, ok := sockOpts[ssoTTL]
if !ok {
return errOpNoSupport
2017-03-26 19:50:20 +00:00
}
2017-09-30 16:47:47 +00:00
return so.SetInt(c.Conn, ttl)
2017-03-26 19:50:20 +00:00
}