aboutsummaryrefslogtreecommitdiffstats
path: root/examples/binapi/memclnt/memclnt.ba.go
blob: d57cc6cccdd7d4da33efc4456620529581428d20 (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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
// Code generated by GoVPP's binapi-generator. DO NOT EDIT.
// versions:
//  binapi-generator: v0.4.0-dev
//  VPP:              20.05-release
// source: /usr/share/vpp/api/core/memclnt.api.json

/*
Package memclnt contains generated code for VPP API file memclnt.api (2.1.0).

It consists of:
	 22 messages
	  2 types
*/
package memclnt

import (
	"bytes"
	"context"
	"encoding/binary"
	"io"
	"math"
	"strconv"

	api "git.fd.io/govpp.git/api"
	codec "git.fd.io/govpp.git/codec"
	struc "github.com/lunixbochs/struc"
)

// 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 // please upgrade the GoVPP api package

const (
	// ModuleName is the name of this module.
	ModuleName = "memclnt"
	// APIVersion is the API version of this module.
	APIVersion = "2.1.0"
	// VersionCrc is the CRC of this module.
	VersionCrc = 0x8d3dd881
)

// MessageTableEntry represents VPP binary API type 'message_table_entry'.
type MessageTableEntry struct {
	Index uint16 `binapi:"u16,name=index" json:"index,omitempty"`
	Name  string `binapi:"string[64],name=name" json:"name,omitempty" struc:"[64]byte"`
}

func (*MessageTableEntry) GetTypeName() string { return "message_table_entry" }

// ModuleVersion represents VPP binary API type 'module_version'.
type ModuleVersion struct {
	Major uint32 `binapi:"u32,name=major" json:"major,omitempty"`
	Minor uint32 `binapi:"u32,name=minor" json:"minor,omitempty"`
	Patch uint32 `binapi:"u32,name=patch" json:"patch,omitempty"`
	Name  string `binapi:"string[64],name=name" json:"name,omitempty" struc:"[64]byte"`
}

func (*ModuleVersion) GetTypeName() string { return "module_version" }

// APIVersions represents VPP binary API message 'api_versions'.
type APIVersions struct{}

func (m *APIVersions) Reset()                        { *m = APIVersions{} }
func (*APIVersions) GetMessageName() string          { return "api_versions" }
func (*APIVersions) GetCrcString() string            { return "51077d14" }
func (*APIVersions) GetMessageType() api.MessageType { return api.RequestMessage }

func (m *APIVersions) Size() int {
	if m == nil {
		return 0
	}
	var size int
	return size
}
func (m *APIVersions) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	return buf, nil
}
func (m *APIVersions) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	return nil
}

// APIVersionsReply represents VPP binary API message 'api_versions_reply'.
type APIVersionsReply struct {
	Retval      int32           `binapi:"i32,name=retval" json:"retval,omitempty"`
	Count       uint32          `binapi:"u32,name=count" json:"count,omitempty" struc:"sizeof=APIVersions"`
	APIVersions []ModuleVersion `binapi:"module_version[count],name=api_versions" json:"api_versions,omitempty"`
}

func (m *APIVersionsReply) Reset()                        { *m = APIVersionsReply{} }
func (*APIVersionsReply) GetMessageName() string          { return "api_versions_reply" }
func (*APIVersionsReply) GetCrcString() string            { return "5f0d99d6" }
func (*APIVersionsReply) GetMessageType() api.MessageType { return api.ReplyMessage }

func (m *APIVersionsReply) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.Retval
	size += 4
	// field[1] m.Count
	size += 4
	// field[1] m.APIVersions
	for j1 := 0; j1 < len(m.APIVersions); j1++ {
		var s1 ModuleVersion
		_ = s1
		if j1 < len(m.APIVersions) {
			s1 = m.APIVersions[j1]
		}
		// field[2] s1.Major
		size += 4
		// field[2] s1.Minor
		size += 4
		// field[2] s1.Patch
		size += 4
		// field[2] s1.Name
		size += 64
	}
	return size
}
func (m *APIVersionsReply) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.Retval
	o.PutUint32(buf[pos:pos+4], uint32(m.Retval))
	pos += 4
	// field[1] m.Count
	o.PutUint32(buf[pos:pos+4], uint32(len(m.APIVersions)))
	pos += 4
	// field[1] m.APIVersions
	for j1 := 0; j1 < len(m.APIVersions); j1++ {
		var v1 ModuleVersion
		if j1 < len(m.APIVersions) {
			v1 = m.APIVersions[j1]
		}
		// field[2] v1.Major
		o.PutUint32(buf[pos:pos+4], uint32(v1.Major))
		pos += 4
		// field[2] v1.Minor
		o.PutUint32(buf[pos:pos+4], uint32(v1.Minor))
		pos += 4
		// field[2] v1.Patch
		o.PutUint32(buf[pos:pos+4], uint32(v1.Patch))
		pos += 4
		// field[2] v1.Name
		copy(buf[pos:pos+64], v1.Name)
		pos += 64
	}
	return buf, nil
}
func (m *APIVersionsReply) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.Retval
	m.Retval = int32(o.Uint32(tmp[pos : pos+4]))
	pos += 4
	// field[1] m.Count
	m.Count = uint32(o.Uint32(tmp[pos : pos+4]))
	pos += 4
	// field[1] m.APIVersions
	m.APIVersions = make([]ModuleVersion, int(m.Count))
	for j1 := 0; j1 < int(m.Count); j1++ {
		// field[2] m.APIVersions[j1].Major
		m.APIVersions[j1].Major = uint32(o.Uint32(tmp[pos : pos+4]))
		pos += 4
		// field[2] m.APIVersions[j1].Minor
		m.APIVersions[j1].Minor = uint32(o.Uint32(tmp[pos : pos+4]))
		pos += 4
		// field[2] m.APIVersions[j1].Patch
		m.APIVersions[j1].Patch = uint32(o.Uint32(tmp[pos : pos+4]))
		pos += 4
		// field[2] m.APIVersions[j1].Name
		{
			nul := bytes.Index(tmp[pos:pos+64], []byte{0x00})
			m.APIVersions[j1].Name = codec.DecodeString(tmp[pos : pos+nul])
			pos += 64
		}
	}
	return nil
}

// GetFirstMsgID represents VPP binary API message 'get_first_msg_id'.
type GetFirstMsgID struct {
	Name string `binapi:"string[64],name=name" json:"name,omitempty" struc:"[64]byte"`
}

func (m *GetFirstMsgID) Reset()                        { *m = GetFirstMsgID{} }
func (*GetFirstMsgID) GetMessageName() string          { return "get_first_msg_id" }
func (*GetFirstMsgID) GetCrcString() string            { return "ebf79a66" }
func (*GetFirstMsgID) GetMessageType() api.MessageType { return api.RequestMessage }

func (m *GetFirstMsgID) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.Name
	size += 64
	return size
}
func (m *GetFirstMsgID) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.Name
	copy(buf[pos:pos+64], m.Name)
	pos += 64
	return buf, nil
}
func (m *GetFirstMsgID) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.Name
	{
		nul := bytes.Index(tmp[pos:pos+64], []byte{0x00})
		m.Name = codec.DecodeString(tmp[pos : pos+nul])
		pos += 64
	}
	return nil
}

// GetFirstMsgIDReply represents VPP binary API message 'get_first_msg_id_reply'.
type GetFirstMsgIDReply struct {
	Retval     int32  `binapi:"i32,name=retval" json:"retval,omitempty"`
	FirstMsgID uint16 `binapi:"u16,name=first_msg_id" json:"first_msg_id,omitempty"`
}

func (m *GetFirstMsgIDReply) Reset()                        { *m = GetFirstMsgIDReply{} }
func (*GetFirstMsgIDReply) GetMessageName() string          { return "get_first_msg_id_reply" }
func (*GetFirstMsgIDReply) GetCrcString() string            { return "7d337472" }
func (*GetFirstMsgIDReply) GetMessageType() api.MessageType { return api.ReplyMessage }

func (m *GetFirstMsgIDReply) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.Retval
	size += 4
	// field[1] m.FirstMsgID
	size += 2
	return size
}
func (m *GetFirstMsgIDReply) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.Retval
	o.PutUint32(buf[pos:pos+4], uint32(m.Retval))
	pos += 4
	// field[1] m.FirstMsgID
	o.PutUint16(buf[pos:pos+2], uint16(m.FirstMsgID))
	pos += 2
	return buf, nil
}
func (m *GetFirstMsgIDReply) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.Retval
	m.Retval = int32(o.Uint32(tmp[pos : pos+4]))
	pos += 4
	// field[1] m.FirstMsgID
	m.FirstMsgID = uint16(o.Uint16(tmp[pos : pos+2]))
	pos += 2
	return nil
}

// MemclntCreate represents VPP binary API message 'memclnt_create'.
type MemclntCreate struct {
	CtxQuota    int32    `binapi:"i32,name=ctx_quota" json:"ctx_quota,omitempty"`
	InputQueue  uint64   `binapi:"u64,name=input_queue" json:"input_queue,omitempty"`
	Name        string   `binapi:"string[64],name=name" json:"name,omitempty" struc:"[64]byte"`
	APIVersions []uint32 `binapi:"u32[8],name=api_versions" json:"api_versions,omitempty" struc:"[8]uint32"`
}

func (m *MemclntCreate) Reset()                        { *m = MemclntCreate{} }
func (*MemclntCreate) GetMessageName() string          { return "memclnt_create" }
func (*MemclntCreate) GetCrcString() string            { return "9c5e1c2f" }
func (*MemclntCreate) GetMessageType() api.MessageType { return api.ReplyMessage }

func (m *MemclntCreate) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.CtxQuota
	size += 4
	// field[1] m.InputQueue
	size += 8
	// field[1] m.Name
	size += 64
	// field[1] m.APIVersions
	size += 32
	return size
}
func (m *MemclntCreate) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.CtxQuota
	o.PutUint32(buf[pos:pos+4], uint32(m.CtxQuota))
	pos += 4
	// field[1] m.InputQueue
	o.PutUint64(buf[pos:pos+8], uint64(m.InputQueue))
	pos += 8
	// field[1] m.Name
	copy(buf[pos:pos+64], m.Name)
	pos += 64
	// field[1] m.APIVersions
	for i := 0; i < 8; i++ {
		var x uint32
		if i < len(m.APIVersions) {
			x = uint32(m.APIVersions[i])
		}
		o.PutUint32(buf[pos:pos+4], uint32(x))
		pos += 4
	}
	return buf, nil
}
func (m *MemclntCreate) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.CtxQuota
	m.CtxQuota = int32(o.Uint32(tmp[pos : pos+4]))
	pos += 4
	// field[1] m.InputQueue
	m.InputQueue = uint64(o.Uint64(tmp[pos : pos+8]))
	pos += 8
	// field[1] m.Name
	{
		nul := bytes.Index(tmp[pos:pos+64], []byte{0x00})
		m.Name = codec.DecodeString(tmp[pos : pos+nul])
		pos += 64
	}
	// field[1] m.APIVersions
	m.APIVersions = make([]uint32, 8)
	for i := 0; i < len(m.APIVersions); i++ {
		m.APIVersions[i] = uint32(o.Uint32(tmp[pos : pos+4]))
		pos += 4
	}
	return nil
}

// MemclntCreateReply represents VPP binary API message 'memclnt_create_reply'.
type MemclntCreateReply struct {
	Response     int32  `binapi:"i32,name=response" json:"response,omitempty"`
	Handle       uint64 `binapi:"u64,name=handle" json:"handle,omitempty"`
	Index        uint32 `binapi:"u32,name=index" json:"index,omitempty"`
	MessageTable uint64 `binapi:"u64,name=message_table" json:"message_table,omitempty"`
}

func (m *MemclntCreateReply) Reset()                        { *m = MemclntCreateReply{} }
func (*MemclntCreateReply) GetMessageName() string          { return "memclnt_create_reply" }
func (*MemclntCreateReply) GetCrcString() string            { return "42ec4560" }
func (*MemclntCreateReply) GetMessageType() api.MessageType { return api.ReplyMessage }

func (m *MemclntCreateReply) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.Response
	size += 4
	// field[1] m.Handle
	size += 8
	// field[1] m.Index
	size += 4
	// field[1] m.MessageTable
	size += 8
	return size
}
func (m *MemclntCreateReply) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.Response
	o.PutUint32(buf[pos:pos+4], uint32(m.Response))
	pos += 4
	// field[1] m.Handle
	o.PutUint64(buf[pos:pos+8], uint64(m.Handle))
	pos += 8
	// field[1] m.Index
	o.PutUint32(buf[pos:pos+4], uint32(m.Index))
	pos += 4
	// field[1] m.MessageTable
	o.PutUint64(buf[pos:pos+8], uint64(m.MessageTable))
	pos += 8
	return buf, nil
}
func (m *MemclntCreateReply) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.Response
	m.Response = int32(o.Uint32(tmp[pos : pos+4]))
	pos += 4
	// field[1] m.Handle
	m.Handle = uint64(o.Uint64(tmp[pos : pos+8]))
	pos += 8
	// field[1] m.Index
	m.Index = uint32(o.Uint32(tmp[pos : pos+4]))
	pos += 4
	// field[1] m.MessageTable
	m.MessageTable = uint64(o.Uint64(tmp[pos : pos+8]))
	pos += 8
	return nil
}

// MemclntDelete represents VPP binary API message 'memclnt_delete'.
type MemclntDelete struct {
	Index     uint32 `binapi:"u32,name=index" json:"index,omitempty"`
	Handle    uint64 `binapi:"u64,name=handle" json:"handle,omitempty"`
	DoCleanup bool   `binapi:"bool,name=do_cleanup" json:"do_cleanup,omitempty"`
}

func (m *MemclntDelete) Reset()                        { *m = MemclntDelete{} }
func (*MemclntDelete) GetMessageName() string          { return "memclnt_delete" }
func (*MemclntDelete) GetCrcString() string            { return "7e1c04e3" }
func (*MemclntDelete) GetMessageType() api.MessageType { return api.OtherMessage }

func (m *MemclntDelete) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.Index
	size += 4
	// field[1] m.Handle
	size += 8
	// field[1] m.DoCleanup
	size += 1
	return size
}
func (m *MemclntDelete) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.Index
	o.PutUint32(buf[pos:pos+4], uint32(m.Index))
	pos += 4
	// field[1] m.Handle
	o.PutUint64(buf[pos:pos+8], uint64(m.Handle))
	pos += 8
	// field[1] m.DoCleanup
	if m.DoCleanup {
		buf[pos] = 1
	}
	pos += 1
	return buf, nil
}
func (m *MemclntDelete) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.Index
	m.Index = uint32(o.Uint32(tmp[pos : pos+4]))
	pos += 4
	// field[1] m.Handle
	m.Handle = uint64(o.Uint64(tmp[pos : pos+8]))
	pos += 8
	// field[1] m.DoCleanup
	m.DoCleanup = tmp[pos] != 0
	pos += 1
	return nil
}

// MemclntDeleteReply represents VPP binary API message 'memclnt_delete_reply'.
type MemclntDeleteReply struct {
	Response int32  `binapi:"i32,name=response" json:"response,omitempty"`
	Handle   uint64 `binapi:"u64,name=handle" json:"handle,omitempty"`
}

func (m *MemclntDeleteReply) Reset()                        { *m = MemclntDeleteReply{} }
func (*MemclntDeleteReply) GetMessageName() string          { return "memclnt_delete_reply" }
func (*MemclntDeleteReply) GetCrcString() string            { return "3d3b6312" }
func (*MemclntDeleteReply) GetMessageType() api.MessageType { return api.OtherMessage }

func (m *MemclntDeleteReply) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.Response
	size += 4
	// field[1] m.Handle
	size += 8
	return size
}
func (m *MemclntDeleteReply) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.Response
	o.PutUint32(buf[pos:pos+4], uint32(m.Response))
	pos += 4
	// field[1] m.Handle
	o.PutUint64(buf[pos:pos+8], uint64(m.Handle))
	pos += 8
	return buf, nil
}
func (m *MemclntDeleteReply) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.Response
	m.Response = int32(o.Uint32(tmp[pos : pos+4]))
	pos += 4
	// field[1] m.Handle
	m.Handle = uint64(o.Uint64(tmp[pos : pos+8]))
	pos += 8
	return nil
}

// MemclntKeepalive represents VPP binary API message 'memclnt_keepalive'.
type MemclntKeepalive struct{}

func (m *MemclntKeepalive) Reset()                        { *m = MemclntKeepalive{} }
func (*MemclntKeepalive) GetMessageName() string          { return "memclnt_keepalive" }
func (*MemclntKeepalive) GetCrcString() string            { return "51077d14" }
func (*MemclntKeepalive) GetMessageType() api.MessageType { return api.RequestMessage }

func (m *MemclntKeepalive) Size() int {
	if m == nil {
		return 0
	}
	var size int
	return size
}
func (m *MemclntKeepalive) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	return buf, nil
}
func (m *MemclntKeepalive) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	return nil
}

// MemclntKeepaliveReply represents VPP binary API message 'memclnt_keepalive_reply'.
type MemclntKeepaliveReply struct {
	Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
}

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

func (m *MemclntKeepaliveReply) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.Retval
	size += 4
	return size
}
func (m *MemclntKeepaliveReply) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.Retval
	o.PutUint32(buf[pos:pos+4], uint32(m.Retval))
	pos += 4
	return buf, nil
}
func (m *MemclntKeepaliveReply) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.Retval
	m.Retval = int32(o.Uint32(tmp[pos : pos+4]))
	pos += 4
	return nil
}

// MemclntReadTimeout represents VPP binary API message 'memclnt_read_timeout'.
type MemclntReadTimeout struct {
	Dummy uint8 `binapi:"u8,name=dummy" json:"dummy,omitempty"`
}

func (m *MemclntReadTimeout) Reset()                        { *m = MemclntReadTimeout{} }
func (*MemclntReadTimeout) GetMessageName() string          { return "memclnt_read_timeout" }
func (*MemclntReadTimeout) GetCrcString() string            { return "c3a3a452" }
func (*MemclntReadTimeout) GetMessageType() api.MessageType { return api.OtherMessage }

func (m *MemclntReadTimeout) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.Dummy
	size += 1
	return size
}
func (m *MemclntReadTimeout) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.Dummy
	buf[pos] = uint8(m.Dummy)
	pos += 1
	return buf, nil
}
func (m *MemclntReadTimeout) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.Dummy
	m.Dummy = uint8(tmp[pos])
	pos += 1
	return nil
}

// MemclntRxThreadSuspend represents VPP binary API message 'memclnt_rx_thread_suspend'.
type MemclntRxThreadSuspend struct {
	Dummy uint8 `binapi:"u8,name=dummy" json:"dummy,omitempty"`
}

func (m *MemclntRxThreadSuspend) Reset()                        { *m = MemclntRxThreadSuspend{} }
func (*MemclntRxThreadSuspend) GetMessageName() string          { return "memclnt_rx_thread_suspend" }
func (*MemclntRxThreadSuspend) GetCrcString() string            { return "c3a3a452" }
func (*MemclntRxThreadSuspend) GetMessageType() api.MessageType { return api.OtherMessage }

func (m *MemclntRxThreadSuspend) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.Dummy
	size += 1
	return size
}
func (m *MemclntRxThreadSuspend) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.Dummy
	buf[pos] = uint8(m.Dummy)
	pos += 1
	return buf, nil
}
func (m *MemclntRxThreadSuspend) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.Dummy
	m.Dummy = uint8(tmp[pos])
	pos += 1
	return nil
}

// RPCCall represents VPP binary API message 'rpc_call'.
type RPCCall struct {
	Function        uint64 `binapi:"u64,name=function" json:"function,omitempty"`
	Multicast       uint8  `binapi:"u8,name=multicast" json:"multicast,omitempty"`
	NeedBarrierSync uint8  `binapi:"u8,name=need_barrier_sync" json:"need_barrier_sync,omitempty"`
	SendReply       uint8  `binapi:"u8,name=send_reply" json:"send_reply,omitempty"`
	DataLen         uint32 `binapi:"u32,name=data_len" json:"data_len,omitempty" struc:"sizeof=Data"`
	Data            []byte `binapi:"u8[data_len],name=data" json:"data,omitempty"`
}

func (m *RPCCall) Reset()                        { *m = RPCCall{} }
func (*RPCCall) GetMessageName() string          { return "rpc_call" }
func (*RPCCall) GetCrcString() string            { return "7e8a2c95" }
func (*RPCCall) GetMessageType() api.MessageType { return api.RequestMessage }

func (m *RPCCall) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.Function
	size += 8
	// field[1] m.Multicast
	size += 1
	// field[1] m.NeedBarrierSync
	size += 1
	// field[1] m.SendReply
	size += 1
	// field[1] m.DataLen
	size += 4
	// field[1] m.Data
	size += 1 * len(m.Data)
	return size
}
func (m *RPCCall) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.Function
	o.PutUint64(buf[pos:pos+8], uint64(m.Function))
	pos += 8
	// field[1] m.Multicast
	buf[pos] = uint8(m.Multicast)
	pos += 1
	// field[1] m.NeedBarrierSync
	buf[pos] = uint8(m.NeedBarrierSync)
	pos += 1
	// field[1] m.SendReply
	buf[pos] = uint8(m.SendReply)
	pos += 1
	// field[1] m.DataLen
	o.PutUint32(buf[pos:pos+4], uint32(len(m.Data)))
	pos += 4
	// field[1] m.Data
	for i := 0; i < len(m.Data); i++ {
		var x uint8
		if i < len(m.Data) {
			x = uint8(m.Data[i])
		}
		buf[pos] = uint8(x)
		pos += 1
	}
	return buf, nil
}
func (m *RPCCall) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.Function
	m.Function = uint64(o.Uint64(tmp[pos : pos+8]))
	pos += 8
	// field[1] m.Multicast
	m.Multicast = uint8(tmp[pos])
	pos += 1
	// field[1] m.NeedBarrierSync
	m.NeedBarrierSync = uint8(tmp[pos])
	pos += 1
	// field[1] m.SendReply
	m.SendReply = uint8(tmp[pos])
	pos += 1
	// field[1] m.DataLen
	m.DataLen = uint32(o.Uint32(tmp[pos : pos+4]))
	pos += 4
	// field[1] m.Data
	m.Data = make([]uint8, m.DataLen)
	for i := 0; i < len(m.Data); i++ {
		m.Data[i] = uint8(tmp[pos])
		pos += 1
	}
	return nil
}

// RPCCallReply represents VPP binary API message 'rpc_call_reply'.
type RPCCallReply struct {
	Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
}

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

func (m *RPCCallReply) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.Retval
	size += 4
	return size
}
func (m *RPCCallReply) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.Retval
	o.PutUint32(buf[pos:pos+4], uint32(m.Retval))
	pos += 4
	return buf, nil
}
func (m *RPCCallReply) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.Retval
	m.Retval = int32(o.Uint32(tmp[pos : pos+4]))
	pos += 4
	return nil
}

// RxThreadExit represents VPP binary API message 'rx_thread_exit'.
type RxThreadExit struct {
	Dummy uint8 `binapi:"u8,name=dummy" json:"dummy,omitempty"`
}

func (m *RxThreadExit) Reset()                        { *m = RxThreadExit{} }
func (*RxThreadExit) GetMessageName() string          { return "rx_thread_exit" }
func (*RxThreadExit) GetCrcString() string            { return "c3a3a452" }
func (*RxThreadExit) GetMessageType() api.MessageType { return api.OtherMessage }

func (m *RxThreadExit) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.Dummy
	size += 1
	return size
}
func (m *RxThreadExit) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.Dummy
	buf[pos] = uint8(m.Dummy)
	pos += 1
	return buf, nil
}
func (m *RxThreadExit) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.Dummy
	m.Dummy = uint8(tmp[pos])
	pos += 1
	return nil
}

// SockInitShm represents VPP binary API message 'sock_init_shm'.
type SockInitShm struct {
	RequestedSize uint32   `binapi:"u32,name=requested_size" json:"requested_size,omitempty"`
	Nitems        uint8    `binapi:"u8,name=nitems" json:"nitems,omitempty" struc:"sizeof=Configs"`
	Configs       []uint64 `binapi:"u64[nitems],name=configs" json:"configs,omitempty"`
}

func (m *SockInitShm) Reset()                        { *m = SockInitShm{} }
func (*SockInitShm) GetMessageName() string          { return "sock_init_shm" }
func (*SockInitShm) GetCrcString() string            { return "51646d92" }
func (*SockInitShm) GetMessageType() api.MessageType { return api.RequestMessage }

func (m *SockInitShm) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.RequestedSize
	size += 4
	// field[1] m.Nitems
	size += 1
	// field[1] m.Configs
	size += 8 * len(m.Configs)
	return size
}
func (m *SockInitShm) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.RequestedSize
	o.PutUint32(buf[pos:pos+4], uint32(m.RequestedSize))
	pos += 4
	// field[1] m.Nitems
	buf[pos] = uint8(len(m.Configs))
	pos += 1
	// field[1] m.Configs
	for i := 0; i < len(m.Configs); i++ {
		var x uint64
		if i < len(m.Configs) {
			x = uint64(m.Configs[i])
		}
		o.PutUint64(buf[pos:pos+8], uint64(x))
		pos += 8
	}
	return buf, nil
}
func (m *SockInitShm) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.RequestedSize
	m.RequestedSize = uint32(o.Uint32(tmp[pos : pos+4]))
	pos += 4
	// field[1] m.Nitems
	m.Nitems = uint8(tmp[pos])
	pos += 1
	// field[1] m.Configs
	m.Configs = make([]uint64, m.Nitems)
	for i := 0; i < len(m.Configs); i++ {
		m.Configs[i] = uint64(o.Uint64(tmp[pos : pos+8]))
		pos += 8
	}
	return nil
}

// SockInitShmReply represents VPP binary API message 'sock_init_shm_reply'.
type SockInitShmReply struct {
	Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
}

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

func (m *SockInitShmReply) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.Retval
	size += 4
	return size
}
func (m *SockInitShmReply) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.Retval
	o.PutUint32(buf[pos:pos+4], uint32(m.Retval))
	pos += 4
	return buf, nil
}
func (m *SockInitShmReply) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.Retval
	m.Retval = int32(o.Uint32(tmp[pos : pos+4]))
	pos += 4
	return nil
}

// SockclntCreate represents VPP binary API message 'sockclnt_create'.
type SockclntCreate struct {
	Name string `binapi:"string[64],name=name" json:"name,omitempty" struc:"[64]byte"`
}

func (m *SockclntCreate) Reset()                        { *m = SockclntCreate{} }
func (*SockclntCreate) GetMessageName() string          { return "sockclnt_create" }
func (*SockclntCreate) GetCrcString() string            { return "455fb9c4" }
func (*SockclntCreate) GetMessageType() api.MessageType { return api.ReplyMessage }

func (m *SockclntCreate) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.Name
	size += 64
	return size
}
func (m *SockclntCreate) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.Name
	copy(buf[pos:pos+64], m.Name)
	pos += 64
	return buf, nil
}
func (m *SockclntCreate) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.Name
	{
		nul := bytes.Index(tmp[pos:pos+64], []byte{0x00})
		m.Name = codec.DecodeString(tmp[pos : pos+nul])
		pos += 64
	}
	return nil
}

// SockclntCreateReply represents VPP binary API message 'sockclnt_create_reply'.
type SockclntCreateReply struct {
	Response     int32               `binapi:"i32,name=response" json:"response,omitempty"`
	Index        uint32              `binapi:"u32,name=index" json:"index,omitempty"`
	Count        uint16              `binapi:"u16,name=count" json:"count,omitempty" struc:"sizeof=MessageTable"`
	MessageTable []MessageTableEntry `binapi:"message_table_entry[count],name=message_table" json:"message_table,omitempty"`
}

func (m *SockclntCreateReply) Reset()                        { *m = SockclntCreateReply{} }
func (*SockclntCreateReply) GetMessageName() string          { return "sockclnt_create_reply" }
func (*SockclntCreateReply) GetCrcString() string            { return "35166268" }
func (*SockclntCreateReply) GetMessageType() api.MessageType { return api.RequestMessage }

func (m *SockclntCreateReply) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.Response
	size += 4
	// field[1] m.Index
	size += 4
	// field[1] m.Count
	size += 2
	// field[1] m.MessageTable
	for j1 := 0; j1 < len(m.MessageTable); j1++ {
		var s1 MessageTableEntry
		_ = s1
		if j1 < len(m.MessageTable) {
			s1 = m.MessageTable[j1]
		}
		// field[2] s1.Index
		size += 2
		// field[2] s1.Name
		size += 64
	}
	return size
}
func (m *SockclntCreateReply) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.Response
	o.PutUint32(buf[pos:pos+4], uint32(m.Response))
	pos += 4
	// field[1] m.Index
	o.PutUint32(buf[pos:pos+4], uint32(m.Index))
	pos += 4
	// field[1] m.Count
	o.PutUint16(buf[pos:pos+2], uint16(len(m.MessageTable)))
	pos += 2
	// field[1] m.MessageTable
	for j1 := 0; j1 < len(m.MessageTable); j1++ {
		var v1 MessageTableEntry
		if j1 < len(m.MessageTable) {
			v1 = m.MessageTable[j1]
		}
		// field[2] v1.Index
		o.PutUint16(buf[pos:pos+2], uint16(v1.Index))
		pos += 2
		// field[2] v1.Name
		copy(buf[pos:pos+64], v1.Name)
		pos += 64
	}
	return buf, nil
}
func (m *SockclntCreateReply) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.Response
	m.Response = int32(o.Uint32(tmp[pos : pos+4]))
	pos += 4
	// field[1] m.Index
	m.Index = uint32(o.Uint32(tmp[pos : pos+4]))
	pos += 4
	// field[1] m.Count
	m.Count = uint16(o.Uint16(tmp[pos : pos+2]))
	pos += 2
	// field[1] m.MessageTable
	m.MessageTable = make([]MessageTableEntry, int(m.Count))
	for j1 := 0; j1 < int(m.Count); j1++ {
		// field[2] m.MessageTable[j1].Index
		m.MessageTable[j1].Index = uint16(o.Uint16(tmp[pos : pos+2]))
		pos += 2
		// field[2] m.MessageTable[j1].Name
		{
			nul := bytes.Index(tmp[pos:pos+64], []byte{0x00})
			m.MessageTable[j1].Name = codec.DecodeString(tmp[pos : pos+nul])
			pos += 64
		}
	}
	return nil
}

// SockclntDelete represents VPP binary API message 'sockclnt_delete'.
type SockclntDelete struct {
	Index uint32 `binapi:"u32,name=index" json:"index,omitempty"`
}

func (m *SockclntDelete) Reset()                        { *m = SockclntDelete{} }
func (*SockclntDelete) GetMessageName() string          { return "sockclnt_delete" }
func (*SockclntDelete) GetCrcString() string            { return "8ac76db6" }
func (*SockclntDelete) GetMessageType() api.MessageType { return api.RequestMessage }

func (m *SockclntDelete) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.Index
	size += 4
	return size
}
func (m *SockclntDelete) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.Index
	o.PutUint32(buf[pos:pos+4], uint32(m.Index))
	pos += 4
	return buf, nil
}
func (m *SockclntDelete) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.Index
	m.Index = uint32(o.Uint32(tmp[pos : pos+4]))
	pos += 4
	return nil
}

// SockclntDeleteReply represents VPP binary API message 'sockclnt_delete_reply'.
type SockclntDeleteReply struct {
	Response int32 `binapi:"i32,name=response" json:"response,omitempty"`
}

func (m *SockclntDeleteReply) Reset()                        { *m = SockclntDeleteReply{} }
func (*SockclntDeleteReply) GetMessageName() string          { return "sockclnt_delete_reply" }
func (*SockclntDeleteReply) GetCrcString() string            { return "8f38b1ee" }
func (*SockclntDeleteReply) GetMessageType() api.MessageType { return api.ReplyMessage }

func (m *SockclntDeleteReply) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.Response
	size += 4
	return size
}
func (m *SockclntDeleteReply) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.Response
	o.PutUint32(buf[pos:pos+4], uint32(m.Response))
	pos += 4
	return buf, nil
}
func (m *SockclntDeleteReply) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.Response
	m.Response = int32(o.Uint32(tmp[pos : pos+4]))
	pos += 4
	return nil
}

// TracePluginMsgIds represents VPP binary API message 'trace_plugin_msg_ids'.
type TracePluginMsgIds struct {
	PluginName string `binapi:"string[128],name=plugin_name" json:"plugin_name,omitempty" struc:"[128]byte"`
	FirstMsgID uint16 `binapi:"u16,name=first_msg_id" json:"first_msg_id,omitempty"`
	LastMsgID  uint16 `binapi:"u16,name=last_msg_id" json:"last_msg_id,omitempty"`
}

func (m *TracePluginMsgIds) Reset()                        { *m = TracePluginMsgIds{} }
func (*TracePluginMsgIds) GetMessageName() string          { return "trace_plugin_msg_ids" }
func (*TracePluginMsgIds) GetCrcString() string            { return "f476d3ce" }
func (*TracePluginMsgIds) GetMessageType() api.MessageType { return api.RequestMessage }

func (m *TracePluginMsgIds) Size() int {
	if m == nil {
		return 0
	}
	var size int
	// field[1] m.PluginName
	size += 128
	// field[1] m.FirstMsgID
	size += 2
	// field[1] m.LastMsgID
	size += 2
	return size
}
func (m *TracePluginMsgIds) Marshal(b []byte) ([]byte, error) {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	var buf []byte
	if b == nil {
		buf = make([]byte, m.Size())
	} else {
		buf = b
	}
	// field[1] m.PluginName
	copy(buf[pos:pos+128], m.PluginName)
	pos += 128
	// field[1] m.FirstMsgID
	o.PutUint16(buf[pos:pos+2], uint16(m.FirstMsgID))
	pos += 2
	// field[1] m.LastMsgID
	o.PutUint16(buf[pos:pos+2], uint16(m.LastMsgID))
	pos += 2
	return buf, nil
}
func (m *TracePluginMsgIds) Unmarshal(tmp []byte) error {
	o := binary.BigEndian
	_ = o
	pos := 0
	_ = pos
	// field[1] m.PluginName
	{
		nul := bytes.Index(tmp[pos:pos+128], []byte{0x00})
		m.PluginName = codec.DecodeString(tmp[pos : pos+nul])
		pos += 128
	}
	// field[1] m.FirstMsgID
	m.FirstMsgID = uint16(o.Uint16(tmp[pos : pos+2]))
	pos += 2
	// field[1] m.LastMsgID
	m.LastMsgID = uint16(o.Uint16(tmp[pos : pos+2]))
	pos += 2
	return nil
}

func init() { file_memclnt_binapi_init() }
func file_memclnt_binapi_init() {
	api.RegisterMessage((*APIVersions)(nil), "memclnt.APIVersions")
	api.RegisterMessage((*APIVersionsReply)(nil), "memclnt.APIVersionsReply")
	api.RegisterMessage((*GetFirstMsgID)(nil), "memclnt.GetFirstMsgID")
	api.RegisterMessage((*GetFirstMsgIDReply)(nil), "memclnt.GetFirstMsgIDReply")
	api.RegisterMessage((*MemclntCreate)(nil), "memclnt.MemclntCreate")
	api.RegisterMessage((*MemclntCreateReply)(nil), "memclnt.MemclntCreateReply")
	api.RegisterMessage((*MemclntDelete)(nil), "memclnt.MemclntDelete")
	api.RegisterMessage((*MemclntDeleteReply)(nil), "memclnt.MemclntDeleteReply")
	api.RegisterMessage((*MemclntKeepalive)(nil), "memclnt.MemclntKeepalive")
	api.RegisterMessage((*MemclntKeepaliveReply)(nil), "memclnt.MemclntKeepaliveReply")
	api.RegisterMessage((*MemclntReadTimeout)(nil), "memclnt.MemclntReadTimeout")
	api.RegisterMessage((*MemclntRxThreadSuspend)(nil), "memclnt.MemclntRxThreadSuspend")
	api.RegisterMessage((*RPCCall)(nil), "memclnt.RPCCall")
	api.RegisterMessage((*RPCCallReply)(nil), "memclnt.RPCCallReply")
	api.RegisterMessage((*RxThreadExit)(nil), "memclnt.RxThreadExit")
	api.RegisterMessage((*SockInitShm)(nil), "memclnt.SockInitShm")
	api.RegisterMessage((*SockInitShmReply)(nil), "memclnt.SockInitShmReply")
	api.RegisterMessage((*SockclntCreate)(nil), "memclnt.SockclntCreate")
	api.RegisterMessage((*SockclntCreateReply)(nil), "memclnt.SockclntCreateReply")
	api.RegisterMessage((*SockclntDelete)(nil), "memclnt.SockclntDelete")
	api.RegisterMessage((*SockclntDeleteReply)(nil), "memclnt.SockclntDeleteReply")
	api.RegisterMessage((*TracePluginMsgIds)(nil), "memclnt.TracePluginMsgIds")
}

// Messages returns list of all messages in this module.
func AllMessages() []api.Message {
	return []api.Message{
		(*APIVersions)(nil),
		(*APIVersionsReply)(nil),
		(*GetFirstMsgID)(nil),
		(*GetFirstMsgIDReply)(nil),
		(*MemclntCreate)(nil),
		(*MemclntCreateReply)(nil),
		(*MemclntDelete)(nil),
		(*MemclntDeleteReply)(nil),
		(*MemclntKeepalive)(nil),
		(*MemclntKeepaliveReply)(nil),
		(*MemclntReadTimeout)(nil),
		(*MemclntRxThreadSuspend)(nil),
		(*RPCCall)(nil),
		(*RPCCallReply)(nil),
		(*RxThreadExit)(nil),
		(*SockInitShm)(nil),
		(*SockInitShmReply)(nil),
		(*SockclntCreate)(nil),
		(*SockclntCreateReply)(nil),
		(*SockclntDelete)(nil),
		(*SockclntDeleteReply)(nil),
		(*TracePluginMsgIds)(nil),
	}
}

// Reference imports to suppress errors if they are not otherwise used.
var _ = api.RegisterMessage
var _ = codec.DecodeString
var _ = bytes.NewBuffer
var _ = context.Background
var _ = io.Copy
var _ = strconv.Itoa
var _ = struc.Pack
var _ = binary.BigEndian
var _ = math.Float32bits