summaryrefslogtreecommitdiff
path: root/kernel/zaptel.h
diff options
context:
space:
mode:
authorsruffell <sruffell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2009-03-24 19:59:43 +0000
committersruffell <sruffell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2009-03-24 19:59:43 +0000
commit275a39b01ad9f8ccf9d31cf5bd78dc4bc82c5659 (patch)
treecd6ea2f85172442f52e3c8bb3b5d7196b3583290 /kernel/zaptel.h
parentd8562c778088ff6ab3383df5ceead41eff4bf124 (diff)
Backporting changes to the transcoder from dahdi.
- Fix bug where asterisk could not find a loaded transcoder. - Do not allow bad packets to corrupt memory. - Eliminate race condition that could cause asterisk to hang. - General cleanup and whitespace changes. git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.4@4633 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'kernel/zaptel.h')
-rw-r--r--kernel/zaptel.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/zaptel.h b/kernel/zaptel.h
index 98f514b..019b01c 100644
--- a/kernel/zaptel.h
+++ b/kernel/zaptel.h
@@ -1742,7 +1742,8 @@ zt_tc_clear_data_waiting(struct zt_transcoder_channel *dtc) {
}
struct zt_transcoder {
- struct list_head node;
+ struct list_head active_list_node;
+ struct list_head registration_list_node;
char name[80];
int pos;
int numchannels;