jingle/action-handlers.h
author Nicolas Cornu <nicolas.cornu@ensi-bourges.fr>
Wed, 01 Sep 2010 01:19:40 +0200
changeset 165 763c26abd99d
parent 111 76ce876f7935
permissions -rw-r--r--
Handle incoming transport-info messages

#ifndef __JINGLE_ACTION_HANDLERS_H__
#define __JINGLE_ACTION_HANDLERS_H__ 1

#include <glib.h>
#include <loudmouth/loudmouth.h>


void handle_content_accept(JingleNode *jn);
void handle_content_add(JingleNode *jn);
void handle_content_reject(JingleNode *jn);
void handle_content_remove(JingleNode *jn);
void handle_session_accept(JingleNode *jn);
void handle_session_info(JingleNode *jn);
void handle_session_initiate(JingleNode *jn);
void handle_session_terminate(JingleNode *jn);
void handle_transport_info(JingleNode *jn);

#endif