Allow CDR's to be linked and work on the linked list

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3247 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2004-06-20 15:19:36 +00:00
parent 347f32ab97
commit 70167380a3
2 changed files with 41 additions and 19 deletions

View File

@@ -74,6 +74,7 @@ struct ast_cdr {
char uniqueid[32];
/* User field */
char userfield[AST_MAX_USER_FIELD];
struct ast_cdr *next;
};
typedef int (*ast_cdrbe)(struct ast_cdr *cdr);