aboutsummaryrefslogtreecommitdiff
path: root/src/regex/regex_internal.h
diff options
context:
space:
mode:
authorMaximilian Szengel <gnunet@maxsz.de>2012-11-13 17:02:07 +0000
committerMaximilian Szengel <gnunet@maxsz.de>2012-11-13 17:02:07 +0000
commit6bb3af348c931d7a01bf2b063ad9e2e294cc7af9 (patch)
tree01156e2a7d495a33fd3eea30413b0b1c65096cfc /src/regex/regex_internal.h
parenta1ab1459c85a5a647f36aba790c36d89c9faa268 (diff)
downloadgnunet-6bb3af348c931d7a01bf2b063ad9e2e294cc7af9.tar.gz
gnunet-6bb3af348c931d7a01bf2b063ad9e2e294cc7af9.zip
optimizations
Diffstat (limited to 'src/regex/regex_internal.h')
-rw-r--r--src/regex/regex_internal.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/regex/regex_internal.h b/src/regex/regex_internal.h
index 21c498145..479de7024 100644
--- a/src/regex/regex_internal.h
+++ b/src/regex/regex_internal.h
@@ -86,16 +86,26 @@ struct GNUNET_REGEX_Transition
86struct GNUNET_REGEX_State 86struct GNUNET_REGEX_State
87{ 87{
88 /** 88 /**
89 * This is a linked list. 89 * This is a linked list to keep states in an automaton.
90 */ 90 */
91 struct GNUNET_REGEX_State *prev; 91 struct GNUNET_REGEX_State *prev;
92 92
93 /** 93 /**
94 * This is a linked list. 94 * This is a linked list to keep states in an automaton.
95 */ 95 */
96 struct GNUNET_REGEX_State *next; 96 struct GNUNET_REGEX_State *next;
97 97
98 /** 98 /**
99 * This is a multi DLL for StateSet_p.
100 */
101 struct GNUNET_REGEX_State *prev_SS;
102
103 /**
104 * This is a multi DLL for StateSet_p.
105 */
106 struct GNUNET_REGEX_State *next_SS;
107
108 /**
99 * Unique state id. 109 * Unique state id.
100 */ 110 */
101 unsigned int id; 111 unsigned int id;