⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 osip_call_info.c

📁 libosip2-3.0.3最新版本
💻 C
字号:
/*  The oSIP library implements the Session Initiation Protocol (SIP -rfc3261-)  Copyright (C) 2001,2002,2003,2004,2005,2006,2007 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*/#include <stdlib.h>#include <stdio.h>#include <osipparser2/osip_port.h>#include <osipparser2/osip_message.h>#include <osipparser2/osip_parser.h>#include "parser.h"#ifndef MINISIZEintosip_message_set_call_info (osip_message_t * sip, const char *hvalue){  osip_call_info_t *call_info;  int i;  if (hvalue == NULL || hvalue[0] == '\0')    return 0;  i = osip_call_info_init (&call_info);  if (i != 0)    return -1;  i = osip_call_info_parse (call_info, hvalue);  if (i != 0)                   /* allocation failed */    {      osip_call_info_free (call_info);      return -1;    }  sip->message_property = 2;  osip_list_add (&sip->call_infos, call_info, -1);  return 0;}intosip_message_get_call_info (const osip_message_t * sip, int pos,                            osip_call_info_t ** dest){  osip_call_info_t *call_info;  *dest = NULL;  if (osip_list_size (&sip->call_infos) <= pos)    return -1;                  /* does not exist */  call_info = (osip_call_info_t *) osip_list_get (&sip->call_infos, pos);  *dest = call_info;  return pos;}intosip_call_info_init (osip_call_info_t ** call_info){  *call_info = (osip_call_info_t *) osip_malloc (sizeof (osip_call_info_t));  if (*call_info == NULL)    return -1;  (*call_info)->element = NULL;  osip_list_init (&(*call_info)->gen_params);  return 0;}intosip_call_info_parse (osip_call_info_t * call_info, const char *hvalue){  const char *osip_call_info_params;  osip_call_info_params = strchr (hvalue, '<');  if (osip_call_info_params == NULL)    return -1;  osip_call_info_params = strchr (osip_call_info_params + 1, '>');  if (osip_call_info_params == NULL)    return -1;  osip_call_info_params = strchr (osip_call_info_params + 1, ';');  if (osip_call_info_params != NULL)    {      if (__osip_generic_param_parseall          (&call_info->gen_params, osip_call_info_params) == -1)        return -1;  } else    osip_call_info_params = hvalue + strlen (hvalue);  if (osip_call_info_params - hvalue + 1 < 2)    return -1;  call_info->element = (char *) osip_malloc (osip_call_info_params - hvalue + 1);  if (call_info->element == NULL)    return -1;  osip_clrncpy (call_info->element, hvalue, osip_call_info_params - hvalue);  return 0;}/* returns the call_info header as a string.  *//* INPUT : osip_call_info_t *call_info | call_info header.   *//* returns null on error. */intosip_call_info_to_str (const osip_call_info_t * call_info, char **dest){  char *buf;  char *tmp;  size_t len;  size_t plen;  *dest = NULL;  if ((call_info == NULL) || (call_info->element == NULL))    return -1;  len = strlen (call_info->element) + 2;  buf = (char *) osip_malloc (len);  if (buf == NULL)    return -1;  *dest = buf;  sprintf (buf, "%s", call_info->element);  {    int pos = 0;    osip_generic_param_t *u_param;    while (!osip_list_eol (&call_info->gen_params, pos))      {        u_param =          (osip_generic_param_t *) osip_list_get (&call_info->gen_params, pos);        if (u_param->gvalue == NULL)          plen = strlen (u_param->gname) + 2;        else          plen = strlen (u_param->gname) + strlen (u_param->gvalue) + 3;        len = len + plen;        buf = (char *) osip_realloc (buf, len);        tmp = buf;        tmp = tmp + strlen (tmp);        if (u_param->gvalue == NULL)          sprintf (tmp, ";%s", u_param->gname);        else          sprintf (tmp, ";%s=%s", u_param->gname, u_param->gvalue);        pos++;      }  }  *dest = buf;  return 0;}/* deallocates a osip_call_info_t structure.  *//* INPUT : osip_call_info_t *call_info | call_info. */voidosip_call_info_free (osip_call_info_t * call_info){  if (call_info == NULL)    return;  osip_free (call_info->element);  osip_generic_param_freelist (&call_info->gen_params);  call_info->element = NULL;  osip_free (call_info);}intosip_call_info_clone (const osip_call_info_t * ctt, osip_call_info_t ** dest){  int i;  osip_call_info_t *ct;  *dest = NULL;  if (ctt == NULL)    return -1;  if (ctt->element == NULL)    return -1;  i = osip_call_info_init (&ct);  if (i != 0)                   /* allocation failed */    return -1;  ct->element = osip_strdup (ctt->element);  i = osip_list_clone(&ctt->gen_params, &ct->gen_params, (int *(*)(void *, void *)) &osip_generic_param_clone);  if (i != 0)    {      osip_call_info_free (ct);      return -1;    }  *dest = ct;  return 0;}char *osip_call_info_get_uri (osip_call_info_t * ae){  return ae->element;}voidosip_call_info_set_uri (osip_call_info_t * ae, char *uri){  ae->element = uri;}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -