FD.io VPP  v19.04.2-12-g66b1689
Vector Packet Processing
syslog.api
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 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 option version = "1.0.0";
17 import "vnet/ip/ip_types.api";
18 
20 {
29 };
30 
31 /** \brief Set syslog sender configuration
32  @param client_index - opaque cookie to identify the sender
33  @param context - sender context, to match reply w/ request
34  @param src_address - IPv4 address of syslog sender (source)
35  @param collector_address - IPv4 address of syslog collector (destination)
36  @param collector_port - UDP port of syslog colector (destination)
37  @param vrf_id - VRF/FIB table ID
38  @param max_msg_size - maximum message length
39 */
40 autoreply define syslog_set_sender
41 {
49 };
50 
51 /** \brief Get syslog sender configuration
52  @param client_index - opaque cookie to identify the sender
53  @param context - sender context, to match reply w/ request
54 */
55 define syslog_get_sender
56 {
59 };
60 
61 /** \brief Get syslog sender configuration reply
62  @param context - sender context, to match reply w/ request
63  @param retval - return code for the request
64  @param src_address - IPv4 address of syslog sender (source)
65  @param collector_address - IPv4 address of syslog collector (destination)
66  @param collector_port - UDP port of syslog colector (destination)
67  @param vrf_id - VRF/FIB table ID
68  @param max_msg_size - maximum message length
69 */
70 define syslog_get_sender_reply
71 {
79 };
80 
81 /** \brief Set syslog filter
82  @param client_index - opaque cookie to identify the sender
83  @param context - sender context, to match reply w/ request
84  @param severity - severity filter (specified severity and greater match)
85 */
86 autoreply define syslog_set_filter
87 {
90  vl_api_syslog_severity_t severity;
91  };
92 
93 /** \brief Get syslog filter
94  @param client_index - opaque cookie to identify the sender
95  @param context - sender context, to match reply w/ request
96 */
97 define syslog_get_filter
98 {
101 };
102 
103 /** \brief Get syslog filter reply
104  @param context - sender context, to match reply w/ request
105  @param retval - return code for the request
106  @param severity - severity filter (specified severity and greater match)
107 */
108 define syslog_get_filter_reply
109 {
112  vl_api_syslog_severity_t severity;
113 };
114 
115 /*
116  * Local Variables:
117  * eval: (c-set-style "gnu")
118  * End:
119  */
vl_api_syslog_severity_t severity
Definition: syslog.api:90
option version
Definition: syslog.api:16
unsigned int u32
Definition: types.h:88
unsigned short u16
Definition: types.h:57
vl_api_ip4_address_t collector_address
Definition: syslog.api:75
u8 vl_api_ip4_address_t[4]
Definition: ip_types_api.h:31
signed int i32
Definition: types.h:77
syslog_severity
Definition: syslog.api:19
vl_api_syslog_severity_t severity
Definition: syslog.api:112
vl_api_ip4_address_t src_address
Definition: syslog.api:44
vl_api_ip4_address_t src_address
Definition: syslog.api:74
vl_api_ip4_address_t collector_address
Definition: syslog.api:45