-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathq_choke.go
70 lines (59 loc) · 1.57 KB
/
q_choke.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package tc
import (
"fmt"
"github.com/mdlayher/netlink"
)
const (
tcaChokeUnspec = iota
tcaChokeParms
tcaChokeStab
tcaChokeMaxP
)
// Choke contains attributes of the choke discipline
type Choke struct {
Parms *RedQOpt
MaxP *uint32
}
// unmarshalChoke parses the Choke-encoded data and stores the result in the value pointed to by info.
func unmarshalChoke(data []byte, info *Choke) error {
ad, err := netlink.NewAttributeDecoder(data)
if err != nil {
return err
}
var multiError error
for ad.Next() {
switch ad.Type() {
case tcaChokeParms:
opt := &RedQOpt{}
err = unmarshalStruct(ad.Bytes(), opt)
multiError = concatError(multiError, err)
info.Parms = opt
case tcaChokeMaxP:
info.MaxP = uint32Ptr(ad.Uint32())
default:
return fmt.Errorf("unmarshalChoke()\t%d\n\t%v", ad.Type(), ad.Bytes())
}
}
return concatError(multiError, ad.Err())
}
// marshalChoke returns the binary encoding of Choke
func marshalChoke(info *Choke) ([]byte, error) {
options := []tcOption{}
if info == nil {
return []byte{}, fmt.Errorf("Choke: %w", ErrNoArg)
}
var multiError error
// TODO: improve logic and check combinations
if info.Parms != nil {
data, err := marshalStruct(info.Parms)
multiError = concatError(multiError, err)
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaChokeParms, Data: data})
}
if info.MaxP != nil {
options = append(options, tcOption{Interpretation: vtUint32, Type: tcaChokeMaxP, Data: uint32Value(info.MaxP)})
}
if multiError != nil {
return []byte{}, multiError
}
return marshalAttributes(options)
}