![]() |
Home page |
Mailing list |
Docs
Asterisk developer's documentation :: Codename Pineapple
jingle.h
Go to the documentation of this file.
00001 /* 00002 * Asterisk -- An open source telephony toolkit. 00003 * 00004 * Copyright (C) 1999 - 2005, Digium, Inc. 00005 * 00006 * Matt O'Gorman <mogorman@digium.com> 00007 * 00008 * See http://www.asterisk.org for more information about 00009 * the Asterisk project. Please do not directly contact 00010 * any of the maintainers of this project for assistance; 00011 * the project provides a web site, mailing lists and IRC 00012 * channels for your use. 00013 * 00014 * This program is free software, distributed under the terms of 00015 * the GNU General Public License Version 2. See the LICENSE file 00016 * at the top of the source tree. 00017 */ 00018 00019 #ifndef _ASTERISK_JINGLE_H 00020 #define _ASTERISK_JINGLE_H 00021 00022 #include <iksemel.h> 00023 #include "asterisk/astobj.h" 00024 00025 00026 /* Jingle Constants */ 00027 00028 #define JINGLE_NODE "jingle" 00029 #define GOOGLE_NODE "session" 00030 00031 #define JINGLE_NS "http://jabber.org/protocol/jingle" 00032 #define GOOGLE_NS "http://www.google.com/session" 00033 00034 #define JINGLE_SID "sid" 00035 #define GOOGLE_SID "id" 00036 00037 #define JINGLE_INITIATE "initiate" 00038 00039 #define JINGLE_ACCEPT "accept" 00040 #define GOOGLE_ACCEPT "accept" 00041 00042 #define JINGLE_NEGOTIATE "negotiate" 00043 #define GOOGLE_NEGOTIATE "candidates" 00044 00045 #endif