Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015-2016 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 | |
| 16 | /** \file |
| 17 | |
| 18 | This file defines packet-generator interface APIs. |
| 19 | */ |
| 20 | |
Jakub Grajciar | db86329 | 2020-01-30 14:14:15 +0100 | [diff] [blame] | 21 | option version = "2.0.0"; |
| 22 | |
| 23 | import "vnet/interface_types.api"; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 24 | |
| 25 | /** \brief PacketGenerator create interface request |
| 26 | @param client_index - opaque cookie to identify the sender |
| 27 | @param context - sender context, to match reply w/ request |
| 28 | @param interface_id - interface index |
Mohsin Kazmi | 0cf5282 | 2020-06-10 12:35:05 +0200 | [diff] [blame^] | 29 | @param gso_enabled - enable gso on this interface |
Mohsin Kazmi | 22e9cfd | 2019-07-23 11:54:48 +0200 | [diff] [blame] | 30 | @param gso_size - gso size on this interface |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 31 | */ |
| 32 | define pg_create_interface |
| 33 | { |
| 34 | u32 client_index; |
| 35 | u32 context; |
Jakub Grajciar | db86329 | 2020-01-30 14:14:15 +0100 | [diff] [blame] | 36 | vl_api_interface_index_t interface_id; |
| 37 | bool gso_enabled; |
Mohsin Kazmi | 22e9cfd | 2019-07-23 11:54:48 +0200 | [diff] [blame] | 38 | u32 gso_size; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 39 | }; |
| 40 | |
| 41 | /** \brief PacketGenerator create interface response |
| 42 | @param context - sender context, to match reply w/ request |
| 43 | @param retval - return value for request |
| 44 | */ |
| 45 | define pg_create_interface_reply |
| 46 | { |
| 47 | u32 context; |
| 48 | i32 retval; |
Jakub Grajciar | db86329 | 2020-01-30 14:14:15 +0100 | [diff] [blame] | 49 | vl_api_interface_index_t sw_if_index; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 50 | }; |
| 51 | |
| 52 | /** \brief PacketGenerator capture packets on given interface request |
| 53 | @param client_index - opaque cookie to identify the sender |
| 54 | @param context - sender context, to match reply w/ request |
| 55 | @param interface_id - pg interface index |
| 56 | @param is_enabled - 1 if enabling streams, 0 if disabling |
| 57 | @param count - number of packets to be captured |
Jakub Grajciar | db86329 | 2020-01-30 14:14:15 +0100 | [diff] [blame] | 58 | @param pcap_file_name - pacp file name to store captured packets |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 59 | */ |
| 60 | autoreply define pg_capture |
| 61 | { |
| 62 | u32 client_index; |
| 63 | u32 context; |
Jakub Grajciar | db86329 | 2020-01-30 14:14:15 +0100 | [diff] [blame] | 64 | vl_api_interface_index_t interface_id; |
| 65 | bool is_enabled [default=true]; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 66 | u32 count; |
Jakub Grajciar | db86329 | 2020-01-30 14:14:15 +0100 | [diff] [blame] | 67 | string pcap_file_name[]; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 68 | }; |
| 69 | |
| 70 | /** \brief Enable / disable packet generator request |
| 71 | @param client_index - opaque cookie to identify the sender |
| 72 | @param context - sender context, to match reply w/ request |
| 73 | @param is_enabled - 1 if enabling streams, 0 if disabling |
Jakub Grajciar | db86329 | 2020-01-30 14:14:15 +0100 | [diff] [blame] | 74 | @param stream_name - stream name to be enable/disabled, if not specified handle all streams |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 75 | */ |
| 76 | autoreply define pg_enable_disable |
| 77 | { |
| 78 | u32 client_index; |
| 79 | u32 context; |
Jakub Grajciar | db86329 | 2020-01-30 14:14:15 +0100 | [diff] [blame] | 80 | bool is_enabled [default=true]; |
| 81 | string stream_name[]; |
Neale Ranns | b8d4481 | 2017-11-10 06:53:54 -0800 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | /* |
| 85 | * Local Variables: |
| 86 | * eval: (c-set-style "gnu") |
| 87 | * End: |
| 88 | */ |