summaryrefslogtreecommitdiff
path: root/sec.h
diff options
context:
space:
mode:
Diffstat (limited to 'sec.h')
-rw-r--r--sec.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/sec.h b/sec.h
index 0a05698..f795e4c 100644
--- a/sec.h
+++ b/sec.h
@@ -100,6 +100,20 @@ struct echo_can_state
was skipped, for test purposes */
};
+static void echo_can_init(void)
+{
+ printk("Zaptel Echo Canceller: STEVE%s\n", ZAPTEL_ECHO_AGGRESSIVE);
+}
+
+static void echo_can_identify(char *buf, size_t len)
+{
+ strncpy(buf, "STEVE", len);
+}
+
+static void echo_can_shutdown(void)
+{
+}
+
static struct echo_can_state *echo_can_create(int len, int adaption_mode);
static void echo_can_free(struct echo_can_state *ec);
static int16_t echo_can_update(struct echo_can_state *ec, int16_t tx, int16_t rx);