?? osip_negotiation.h
字號:
/* The oSIP library implements the Session Initiation Protocol (SIP -rfc2543-) Copyright (C) 2001 Aymeric MOIZARD jack@atosc.org This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA*/#ifndef _SDP_NEGOC_H_#define _SDP_NEGOC_H_#include <osipparser2/sdp_message.h>/** * @file sdp_negoc.h * @brief oSIP and SDP offer/answer model Routines * * The SDP offer/answer model is where most SIP interoperability issue * comes from. The SDP specification (rfc2327.txt) is often not fully * respected. As an example, most SIP applications forget to add the * mandatory 's' field in the SDP packet. Another mistake is to assume * that an SDP packet don't need a 'p' and a 'e' field. Even if they * are both optional, at least of those is mandatory! I have never * seen ONE implementation that send at least one 'p' or 'e' field!! * <BR>For all the reasons, that make negotiation a hard task, I have * decided to provide a helpful facility to build SDP answer from an * SDP offer. (This facility does not help to build the compliant offer) * Of course, after the SDP negotiator has been executed and produced * a valid response, you can still modify your SDP answer to add * attributes or modify anything. You always keep the entire control * over it. * <H2>Do you need the negotiator</H2> * If you are planning a simple application, I advise you to use it. * Advanced applications may find it inappropriate, but as you can * modify the SDP answer after running the negotiation, I see no reason * why you should not use it. The only goal of the SDP negotiator is * to make sure only one line of audio codec is accepted (the first one) * and only one line of video codec is accepted (the first one). It * also remove from the media lines, the codec that you don't support * without asking you. (Also, you can still refuse the codec you support.) * <BR>Using the negotiator, your only task is to check/add/remove * the media attributes. * * <H2>How-To</H2> * Using the SDP negotiator is simple. An example is provided in the * test directory as 'torture_sdp.c'. It parses a SDP packet from * a file (a sample is available in conf/) and produce the answer * that would be made with a basic configuration where 4 audio codecs * are supported. * <BR>When starting your application, you simply configure the global * osip_negotiation_t element: you'll set you username, ip address and some * general informations about you that every SDP packet must contain. * As a second action, you will register all the codec you support. * (audio, video and 'other' codecs). * <BR>After that, you will also register a set of method used to * accept the codec. The return code of those method will accept or * refused the supported codec for this specific session. * <pre><code> * osip_negotiation_set_fcn_accept_audio_codec(&application_accept_audio_codec); * osip_negotiation_set_fcn_accept_video_codec(&application_accept_video_codec); * osip_negotiation_set_fcn_accept_other_codec(&application_accept_other_codec); * osip_negotiation_set_fcn_get_audio_port(&application_get_audio_port); * </pre></code> * <BR>When you need to create an answer, the following code will create * the SDP packet: * <pre><code> * osip_negotiation_ctx_t *context; * * sdp_message_t *dest; * i = osip_negotiation_ctx_init(&context); * i = osip_negotiation_ctx_set_mycontext(context, (void *)ua_context); * i = osip_negotiation_ctx_set_remote_sdp(context, sdp); * if (i!=0) { * fprintf(stdout, "Initialisation of context failed. Could not negociate"); * } else { * fprintf(stdout, "Trying to execute a SIP negotiation:"); * i = osip_negotiation_ctx_execute_negotiation(context); * fprintf(stdout, "return code: %i",i); * if (i==200) * { * dest = osip_negotiation_ctx_get_local_sdp(context); * fprintf(stdout, "SDP answer:"); * i = sdp_message_to_str(dest, &result); * if (i!=0) * fprintf(stdout, "Error found in SDP answer while printing"); * else * fprintf(stdout, "%s", result); * osip_free(result); * } * osip_negotiation_ctx_free(context); * osip_free(context); * return 0; * } * </pre></code> * <BR>Notice the presence of osip_negotiation_ctx_set_mycontext() which can add * a store the address of your own context (probably related to your call). * This is very useful if you need to know inside the callback which call * this negotiation belongs to. *//** * @defgroup oSIP_OAM oSIP and SDP offer/answer model Handling * @ingroup oSIP * @{ */#ifdef __cplusplusextern "C"{#endif/** * Structure for applying the SDP offer/answer negotiation. * The goal is simply to give: * 1. A configuration (osip_negotiation_t) * 2. A remote SDP packet (generally from the INVITE) * The result is the creation of a local answer to * the remote SDP packet. * @defvar osip_negotiation_ctx_t */ typedef struct osip_negotiation_ctx osip_negotiation_ctx_t; struct osip_negotiation_ctx { void *mycontext; /* add the pointer to your personal context */ sdp_message_t *remote; sdp_message_t *local; };/** * Allocate a negotiation context. * @param ctx The element to work on. */ int osip_negotiation_ctx_init (osip_negotiation_ctx_t ** ctx);/** * Free a negotiation context. * @param ctx The element to work on. */ void osip_negotiation_ctx_free (osip_negotiation_ctx_t * ctx);/** * Set the context associated to this negotiation. * @param ctx The element to work on. * @param value A pointer to your personal context. */ int osip_negotiation_ctx_set_mycontext (osip_negotiation_ctx_t * ctx, void *value);/** * Get the context associated to this negotiation. * @param ctx The element to work on. */ void *osip_negotiation_ctx_get_mycontext (osip_negotiation_ctx_t * ctx);/** * Set the local SDP packet associated to this negotiation. * NOTE: This is done by the 'negotiator'. (You only need to give * the remote SDP packet) * @param ctx The element to work on. * @param sdp The local SDP packet. */ int osip_negotiation_ctx_set_local_sdp (osip_negotiation_ctx_t * ctx, sdp_message_t * sdp);/** * Get the local SDP packet associated to this negotiation. * @param ctx The element to work on. */ sdp_message_t *osip_negotiation_ctx_get_local_sdp (osip_negotiation_ctx_t * ctx);/** * Set the remote SDP packet associated to this negotiation. * @param ctx The element to work on. * @param sdp The remote SDP packet. */ int osip_negotiation_ctx_set_remote_sdp (osip_negotiation_ctx_t * ctx, sdp_message_t * sdp);/** * Get the remote SDP packet associated to this negotiation. * @param ctx The element to work on. */ sdp_message_t *osip_negotiation_ctx_get_remote_sdp (osip_negotiation_ctx_t * ctx);/** * Structure for storing the global configuration management. * The information you store here is used when computing a * remote SDP packet to build a compliant answer. * The main objectives is to: * * automaticly refuse unknown media. * * accept some of the known media. * * make sure the SDP answer match the SDP offer. * * simplify the SDP offer/answer model, as all unknown media * are refused without any indication to the application layer. * * In any case, you can still modify the entire SDP packet after * a negotiation if you are not satisfied by the negotiation result. * @defvar osip_negotiation_t */ typedef struct osip_negotiation osip_negotiation_t; struct osip_negotiation { char *o_username; char *o_session_id; char *o_session_version; char *o_nettype; char *o_addrtype; char *o_addr; char *c_nettype; char *c_addrtype; char *c_addr; char *c_addr_multicast_ttl; char *c_addr_multicast_int; osip_list_t *audio_codec; osip_list_t *video_codec; osip_list_t *other_codec; int (*fcn_set_info) (void *, sdp_message_t *); int (*fcn_set_uri) (void *, sdp_message_t *); int (*fcn_set_emails) (void *, sdp_message_t *); int (*fcn_set_phones) (void *, sdp_message_t *); int (*fcn_set_attributes) (void *, sdp_message_t *, int); int (*fcn_accept_audio_codec) (void *, char *, char *, int, char *); int (*fcn_accept_video_codec) (void *, char *, char *, int, char *); int (*fcn_accept_other_codec) (void *, char *, char *, char *, char *); char *(*fcn_get_audio_port) (void *, int); char *(*fcn_get_video_port) (void *, int); char *(*fcn_get_other_port) (void *, int); };/** * Initialise (and Allocate) a sdp_config element (this element is global). * Stores the initialized structure to conf_out. */ int osip_negotiation_init (osip_negotiation_t **conf_out);/** * Free resource stored by a sdp_config element. * This method must be called once when the application is stopped. */ void osip_negotiation_free (osip_negotiation_t *conf);/**
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -