blob: 43fde559257cd80f34ffa3570570d05764a6f427 [file] [log] [blame]
Ole Troan793be462020-12-04 13:15:30 +01001/*
2 * Copyright (c) 2020 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
Ole Troanab9f5732020-12-15 10:19:25 +010016option version="0.0.0";
Ole Troan793be462020-12-04 13:15:30 +010017import "vnet/ip/ip_types.api";
Ole Troan71134f22021-02-17 14:10:04 +010018import "vnet/interface_types.api";
Ole Troan793be462020-12-04 13:15:30 +010019
20autoreply define test_prefix {
21 vl_api_prefix_t pref;
22};
23
24enumflag test_enumflags {
25 RED = 0x1,
26 BLUE = 0x2,
27 GREEN = 0x4,
28};
29
30autoreply define test_enum {
31 vl_api_test_enumflags_t flags;
32};
Ole Troanfb0afab2021-02-11 11:13:46 +010033
34typedef test_stringtype {
35 string str[];
36};
37
38autoreply define test_string {
39 vl_api_test_stringtype_t str;
40};
Ole Troancf0102b2021-02-12 11:48:12 +010041
Ole Troanfb0afab2021-02-11 11:13:46 +010042autoreply define test_string2 {
43 string str[];
44};
Ole Troancf0102b2021-02-12 11:48:12 +010045
46/* Test of toplevel VLA with basetype */
47autoreply define test_vla {
48 u32 count;
49 u32 vla[count];
50};
51
52/* Test of toplevel VLA with u8 */
53autoreply define test_vla2 {
54 u32 count;
55 u8 vla[count];
56};
57/* Test of toplevel VLA with user type */
58typedef test_vlatype {
59 u32 data;
60};
61autoreply define test_vla3 {
62 u32 count;
63 vl_api_test_vlatype_t vla[count];
64};
65/* Test of typedefed VLA */
66typedef test_vlatype2 {
67 u32 count;
68 u32 vla[count];
69};
70autoreply define test_vla4 {
71 vl_api_test_vlatype2_t data;
72};
73/* u8 string in typedef */
74typedef test_vlatype3 {
75 u32 count;
76 u8 vla[count];
77};
78autoreply define test_vla5 {
79 vl_api_test_vlatype3_t data;
80};
81
Ole Troan316967c2021-02-16 00:31:52 +010082/* Addresses */
83autoreply define test_addresses {
84 vl_api_address_t a;
85};
Ole Troan93c4b1b2021-02-16 18:09:51 +010086autoreply define test_addresses2 {
87 vl_api_address_t a[2];
88};
89autoreply define test_addresses3 {
90 u32 n;
91 vl_api_address_t a[n];
92};
93
94/* Empty */
95autoreply define test_empty {
96 u32 client_index;
97 u32 context;
98};
Ole Troan71134f22021-02-17 14:10:04 +010099
100/* Interface */
101autoreply define test_interface {
102 vl_api_interface_index_t sw_if_index;
103};