From 94b499c9bd72a5a4e6f64a147647bafb7e3bd5d8 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 27 Jan 2012 00:46:49 +0100 Subject: [PATCH] mgcp: add missing prototypes for send_mgcp_reset_* --- openbsc/include/openbsc/mgcp.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/openbsc/include/openbsc/mgcp.h b/openbsc/include/openbsc/mgcp.h index 7c290c7f3..4619572d0 100644 --- a/openbsc/include/openbsc/mgcp.h +++ b/openbsc/include/openbsc/mgcp.h @@ -190,5 +190,8 @@ static inline void mgcp_endpoint_to_timeslot(int endpoint, int *multiplex, int * *timeslot = endpoint % 32; } +int mgcp_send_reset_ep(struct mgcp_endpoint *endp, int endpoint); +int mgcp_send_reset_all(struct mgcp_config *cfg); + #endif