freetdm: make conf nodes to be stored in FIFO order

This commit is contained in:
Moises Silva
2010-09-20 10:18:23 -04:00
parent 7d84351de9
commit 95cf2209fe
2 changed files with 24 additions and 7 deletions

View File

@@ -322,9 +322,15 @@ struct ftdm_conf_node {
/* first node child */
struct ftdm_conf_node *child;
/* last node child */
struct ftdm_conf_node *last;
/* next node sibling */
struct ftdm_conf_node *next;
/* prev node sibling */
struct ftdm_conf_node *prev;
/* my parent if any */
struct ftdm_conf_node *parent;
};