OpenSDN source code
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ordinal_private.h
Go to the documentation of this file.
1 /* $Id: ordinal_private.h 346474 2009-11-14 10:18:58Z ssiano $
2  *
3  * ordinal_private.h - Ordinal assignment private definitions
4  *
5  * Dave Katz, March 2008
6  *
7  * Copyright (c) 2008, Juniper Networks, Inc.
8  * All rights reserved.
9  */
10 
11 #ifndef __ORDINAL_PRIVATE_H__
12 #define __ORDINAL_PRIVATE_H__
13 
14 /*
15  * Ordinal context. It contains a bit vector that we use to keep
16  * track of the ordinal space.
17  */
18 typedef struct ord_context_ {
19  bit_vector ord_vector; /* Bit vector */
20  ord_compact_option ord_compact; /* Compact mode */
21 } ord_context;
22 
23 #endif /* __ORDINAL_PRIVATE_H__ */
ord_compact_option
Definition: ordinal.h:85
bit_vector ord_vector
ord_compact_option ord_compact
struct ord_context_ ord_context