summaryrefslogtreecommitdiff
path: root/sec.h
diff options
context:
space:
mode:
authorkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-03-23 01:41:31 +0000
committerkpfleming <kpfleming@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-03-23 01:41:31 +0000
commite41ec82d5a0300a6991b24506d37365df0a39707 (patch)
tree3e4115dee8cd8da85b866832b5277970b1dec605 /sec.h
parentef81c08aead4f64773442251b4eed786f60700a4 (diff)
bring in the rest of the support needed for HPEC
git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.4@2333 5390a7c7-147a-4af0-8ec9-7488f05a26cb
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);