[asterisk-commits] mmichelson: branch group/CCSS r229741 - /team/group/CCSS/channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Nov 12 11:53:28 CST 2009
Author: mmichelson
Date: Thu Nov 12 11:53:24 2009
New Revision: 229741
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=229741
Log:
Silence a whiny compiler
Modified:
team/group/CCSS/channels/chan_sip.c
Modified: team/group/CCSS/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/team/group/CCSS/channels/chan_sip.c?view=diff&rev=229741&r1=229740&r2=229741
==============================================================================
--- team/group/CCSS/channels/chan_sip.c (original)
+++ team/group/CCSS/channels/chan_sip.c Thu Nov 12 11:53:24 2009
@@ -1754,9 +1754,24 @@
const publish_callback remove_handler;
};
-static int cc_publish_initial_handler(struct sip_pvt *, struct sip_request *, struct event_state_compositor *, struct sip_esc_entry *);
-static int cc_publish_modify_handler(struct sip_pvt *, struct sip_request *, struct event_state_compositor *, struct sip_esc_entry *);
-static int cc_publish_remove_handler(struct sip_pvt *, struct sip_request *, struct event_state_compositor *, struct sip_esc_entry *);
+/* These function are stubbed out for now since I'm focusing solely on PUBLISH support for now. When I go back and actually
+ * implement the CC ESC, I'll fill these out with for-real logic :)
+ */
+static int cc_publish_initial_handler(struct sip_pvt *pvt, struct sip_request *req, struct event_state_compositor *esc, struct sip_esc_entry *esc_entry)
+{
+ /*XXX STUB */
+ return 0;
+}
+static int cc_publish_modify_handler(struct sip_pvt *pvt, struct sip_request *req, struct event_state_compositor *esc, struct sip_esc_entry *esc_entry)
+{
+ /*XXX STUB */
+ return 0;
+}
+static int cc_publish_remove_handler(struct sip_pvt *pvt, struct sip_request *req, struct event_state_compositor *esc, struct sip_esc_entry *esc_entry)
+{
+ /*XXX STUB */
+ return 0;
+}
static const struct sip_publish_callbacks cc_publish_callbacks = {
.initial_handler = cc_publish_initial_handler,
More information about the asterisk-commits
mailing list