-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathlibcliid.h
45 lines (36 loc) · 857 Bytes
/
libcliid.h
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
* =====================================================================================
*
* Filename: libcliid.h
*
* Description:
*
* Version: 1.0
* Created: Saturday 05 August 2017 11:33:29 IST
* Revision: 1.0
* Compiler: gcc
*
* Author: Er. Abhishek Sagar, Networking Developer (AS), [email protected]
* Company: Brocade Communications(Jul 2012- Mar 2016), Current : Juniper Networks(Apr 2017 - Present)
*
* =====================================================================================
*/
#ifndef __LIBCLIID__
#define __LIBCLIID__
typedef enum{
CONFIG_DISABLE,
CONFIG_ENABLE,
OPERATIONAL,
MODE_UNKNOWN
} op_mode;
typedef enum{
INT,
STRING,
IPV4,
FLOAT,
IPV6,
BOOLEAN,
INVALID,
LEAF_MAX
} leaf_type_t;
#endif