blob: c4a94ab492e7abd3b143dad48484421f1c50a9ab (
plain)
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
|
// automatically generated by stateify.
package route
import (
"gvisor.dev/gvisor/pkg/state"
)
func (p *Protocol) StateTypeName() string {
return "pkg/sentry/socket/netlink/route.Protocol"
}
func (p *Protocol) StateFields() []string {
return []string{}
}
func (p *Protocol) beforeSave() {}
// +checklocksignore
func (p *Protocol) StateSave(stateSinkObject state.Sink) {
p.beforeSave()
}
func (p *Protocol) afterLoad() {}
// +checklocksignore
func (p *Protocol) StateLoad(stateSourceObject state.Source) {
}
func init() {
state.Register((*Protocol)(nil))
}
|