forwarding-flags.h
1 
21 /* Note: This file should be named forward-flags-types.h (like data-types.h) but
22  * we leave it as forwarding-flags.h for backwards compatibility with the
23  * include directory of old installations.
24  */
25 
26 #ifndef NDN_FORWARDING_FLAGS_H
27 #define NDN_FORWARDING_FLAGS_H
28 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32 
39  int active;
40  int childInherit;
41  int advertise;
42  int last;
43  int capture;
44  int local;
45  int tap;
46  int captureOk;
47 };
48 
49 #ifdef __cplusplus
50 }
51 #endif
52 
53 #endif
Copyright (C) 2013-2015 Regents of the University of California.
Definition: forwarding-flags.h:38
int active
1 if the flag is set, 0 if cleared.
Definition: forwarding-flags.h:39