aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/udptl.h
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-11 20:07:07 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-11 20:07:07 +0000
commitddf0a93341b10fa3a58929b9661985235efbc59b (patch)
treec65d62d3933b7f73f7ce512136d276968a3f5bc6 /include/asterisk/udptl.h
parent23063a7d4d1f9a4e7b70c4c246e36ac674ebeafc (diff)
Use linkedlist macros for UDPTL protocol list.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@74703 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/udptl.h')
-rw-r--r--include/asterisk/udptl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/udptl.h b/include/asterisk/udptl.h
index bc1498f6e..4ee72b825 100644
--- a/include/asterisk/udptl.h
+++ b/include/asterisk/udptl.h
@@ -42,7 +42,7 @@ struct ast_udptl_protocol {
/* Set UDPTL peer */
int (* const set_udptl_peer)(struct ast_channel *chan, struct ast_udptl *peer);
const char * const type;
- struct ast_udptl_protocol *next;
+ AST_RWLIST_ENTRY(ast_udptl_protocol) list;
};
struct ast_udptl;