summaryrefslogtreecommitdiff
path: root/mec.h
diff options
context:
space:
mode:
Diffstat (limited to 'mec.h')
-rw-r--r--mec.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/mec.h b/mec.h
index 79d9595..09421cd 100644
--- a/mec.h
+++ b/mec.h
@@ -98,6 +98,20 @@ struct echo_can_state {
#define FREE(a) free(a)
#endif
+static void echo_can_init(void)
+{
+ printk("Zaptel Echo Canceller: MARK%s\n", ZAPTEL_ECHO_AGGRESSIVE);
+}
+
+static void echo_can_identify(char *buf, size_t len)
+{
+ strncpy(buf, "MARK2", len);
+}
+
+static void echo_can_shutdown(void)
+{
+}
+
static INLINE struct echo_can_state *echo_can_create(int len, int adaption_mode)
{
struct echo_can_state *ec;