aboutsummaryrefslogtreecommitdiffstats
path: root/binapi/crypto_sw_scheduler/crypto_sw_scheduler.ba.go
blob: bca39daada4119d56113ba469ede8c714834282c (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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// Code generated by GoVPP's binapi-generator. DO NOT EDIT.
// versions:
//  binapi-generator: v0.6.0-dev
//  VPP:              22.02-release
// source: /usr/share/vpp/api/plugins/crypto_sw_scheduler.api.json

// Package crypto_sw_scheduler contains generated bindings for API file crypto_sw_scheduler.api.
//
// Contents:
//   2 messages
//
package crypto_sw_scheduler

import (
	api "go.fd.io/govpp/api"
	codec "go.fd.io/govpp/codec"
)

// This is a compile-time assertion to ensure that this generated file
// is compatible with the GoVPP api package it is being compiled against.
// A compilation error at this line likely means your copy of the
// GoVPP api package needs to be updated.
const _ = api.GoVppAPIPackageIsVersion2

const (
	APIFile    = "crypto_sw_scheduler"
	APIVersion = "0.1.0"
	VersionCrc = 0xf4b02951
)

// CryptoSwSchedulerSetWorker defines message 'crypto_sw_scheduler_set_worker'.
// InProgress: the message form may change in the future versions
type CryptoSwSchedulerSetWorker struct {
	WorkerIndex  uint32 `binapi:"u32,name=worker_index" json:"worker_index,omitempty"`
	CryptoEnable bool   `binapi:"bool,name=crypto_enable" json:"crypto_enable,omitempty"`
}

func (m *CryptoSwSchedulerSetWorker) Reset()               { *m = CryptoSwSchedulerSetWorker{} }
func (*CryptoSwSchedulerSetWorker) GetMessageName() string { return "crypto_sw_scheduler_set_worker" }
func (*CryptoSwSchedulerSetWorker) GetCrcString() string   { return "b4274502" }
func (*CryptoSwSchedulerSetWorker) GetMessageType() api.MessageType {
	return api.RequestMessage
}

func (m *CryptoSwSchedulerSetWorker) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 4 // m.WorkerIndex
	size += 1 // m.CryptoEnable
	return size
}
func (m *CryptoSwSchedulerSetWorker) Marshal(b []byte) ([]byte, error) {
	if b == nil {
		b = make([]byte, m.Size())
	}
	buf := codec.NewBuffer(b)
	buf.EncodeUint32(m.WorkerIndex)
	buf.EncodeBool(m.CryptoEnable)
	return buf.Bytes(), nil
}
func (m *CryptoSwSchedulerSetWorker) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.WorkerIndex = buf.DecodeUint32()
	m.CryptoEnable = buf.DecodeBool()
	return nil
}

// CryptoSwSchedulerSetWorkerReply defines message 'crypto_sw_scheduler_set_worker_reply'.
// InProgress: the message form may change in the future versions
type CryptoSwSchedulerSetWorkerReply struct {
	Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
}

func (m *CryptoSwSchedulerSetWorkerReply) Reset() { *m = CryptoSwSchedulerSetWorkerReply{} }
func (*CryptoSwSchedulerSetWorkerReply) GetMessageName() string {
	return "crypto_sw_scheduler_set_worker_reply"
}
func (*CryptoSwSchedulerSetWorkerReply) GetCrcString() string { return "e8d4e804" }
func (*CryptoSwSchedulerSetWorkerReply) GetMessageType() api.MessageType {
	return api.ReplyMessage
}

func (m *CryptoSwSchedulerSetWorkerReply) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 4 // m.Retval
	return size
}
func (m *CryptoSwSchedulerSetWorkerReply) Marshal(b []byte) ([]byte, error) {
	if b == nil {
		b = make([]byte, m.Size())
	}
	buf := codec.NewBuffer(b)
	buf.EncodeInt32(m.Retval)
	return buf.Bytes(), nil
}
func (m *CryptoSwSchedulerSetWorkerReply) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.Retval = buf.DecodeInt32()
	return nil
}

func init() { file_crypto_sw_scheduler_binapi_init() }
func file_crypto_sw_scheduler_binapi_init() {
	api.RegisterMessage((*CryptoSwSchedulerSetWorker)(nil), "crypto_sw_scheduler_set_worker_b4274502")
	api.RegisterMessage((*CryptoSwSchedulerSetWorkerReply)(nil), "crypto_sw_scheduler_set_worker_reply_e8d4e804")
}

// Messages returns list of all messages in this module.
func AllMessages() []api.Message {
	return []api.Message{
		(*CryptoSwSchedulerSetWorker)(nil),
		(*CryptoSwSchedulerSetWorkerReply)(nil),
	}
}