summaryrefslogtreecommitdiffstats
path: root/src/plugins/ct6/ct6.api
blob: 10a28251a20e90793951ef58411993dbf84d1fc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Define a simple enable-disable binary API to control the feature */

autoreply define ct6_enable_disable {
    /* Client identifier, set from api_main.my_client_index */
    u32 client_index;

    /* Arbitrary context, so client can match reply to request */
    u32 context;

    /* Enable / disable the feature */
    u8 enable_disable;

    /* Inside or outside interface */
    u8 is_inside;

    /* Interface handle */
    u32 sw_if_index;
    option vat_help = "<intfc> [disable]";
};