Fix compile warnings
[jelmer/ctrlproxy.git] / ctcp.c
diff --git a/ctcp.c b/ctcp.c
index e95de5b66760db824f72650d51080e7f8295156b..556644a6aa204488debba057637a4469b3ab92d7 100644 (file)
--- a/ctcp.c
+++ b/ctcp.c
@@ -138,7 +138,26 @@ void register_ctcp_handler(const struct ctcp_handler *h)
        cmds = g_list_append(cmds, h);
 }
 
-gboolean ctcp_process (struct network *n, struct line *l) 
+gboolean ctcp_process_client_request (struct client *c, struct line *l)
+{
+       /* FIXME */
+       return TRUE;
+}
+
+gboolean ctcp_process_client_reply (struct client *c, struct line *l)
+{
+       /* FIXME */
+       return TRUE;
+}
+
+gboolean ctcp_process_network_reply (struct network *n, struct line *l) 
+{
+       /* FIXME */
+       return TRUE;
+}
+
+
+gboolean ctcp_process_network_request (struct network *n, struct line *l) 
 {
        GList *gl;
        int i;