blob: eeb43fb9a2cae6b6691f5d1e0b12c70250d7622c (
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
|
/* SPDX-License-Identifier: Apache-2.0
* Copyright (c) 2024 Cisco Systems, Inc.
*/
option version = "1.0.0";
/** \brief auto sdl config
@param client_index - opaque cookie to identify the sender
@param threshold - number of times to hit for an auto SDL entry is created
@param remove_timeout - timeout value for the auto SDL entries after they are created
@param enable - enable/disable
*/
autoreply define auto_sdl_config {
u32 client_index;
u32 context;
u32 threshold [default=5];
u32 remove_timeout [default=300];
bool enable;
};
/*
* Local Variables:
* eval: (c-set-style "gnu")
* End:
*/
|