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

📄 jrequest.c

📁 libeXosip2-3.0.3.tar.gz
💻 C
📖 第 1 页 / 共 2 页
字号:
/*  eXosip - This is the eXtended osip library.  Copyright (C) 2002,2003,2004,2005,2006,2007  Aymeric MOIZARD  - jack@atosc.org    eXosip is free software; you can redistribute it and/or modify  it under the terms of the GNU General Public License as published by  the Free Software Foundation; either version 2 of the License, or  (at your option) any later version.    eXosip 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 General Public License for more details.    You should have received a copy of the GNU General Public License  along with this program; if not, write to the Free Software  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA*/#ifdef ENABLE_MPATROL#include <mpatrol.h>#endif#include "eXosip2.h"#ifndef WIN32#include <sys/types.h>#include <sys/socket.h>#include <netinet/in.h>#include <arpa/inet.h>#ifdef __APPLE_CC__#include <unistd.h>#endif#else#include <windows.h>#include <Iphlpapi.h>#endifextern eXosip_t eXosip;extern int ipv6_enable;/* Private functions */static int dialog_fill_route_set (osip_dialog_t * dialog,                                  osip_message_t * request);/* should use cryptographically random identifier is RECOMMENDED.... *//* by now this should lead to identical call-id when application are   started at the same time...   */char *osip_call_id_new_random (){  char *tmp = (char *) osip_malloc (33);  unsigned int number = osip_build_random_number ();  sprintf (tmp, "%u", number);  return tmp;}inteXosip_generate_random (char *buf, int buf_size){  unsigned int number = osip_build_random_number ();  snprintf (buf, buf_size, "%u", number);  return 0;}char *osip_from_tag_new_random (void){  return osip_call_id_new_random ();}char *osip_to_tag_new_random (void){  return osip_call_id_new_random ();}unsigned intvia_branch_new_random (void){  return osip_build_random_number ();}int_eXosip_dialog_add_contact(osip_message_t *request, osip_message_t *answer){  osip_via_t *via;  osip_from_t *a_from;  char *contact=NULL;  char locip[65];  char firewall_ip[65];  char firewall_port[10];  int len;  if (eXosip.eXtl==NULL)    return -1;  if (request==NULL)    return -1;  if (eXosip.eXtl->tl_get_masquerade_contact!=NULL)    {      eXosip.eXtl->tl_get_masquerade_contact(firewall_ip, sizeof(firewall_ip),					     firewall_port, sizeof(firewall_port));    }  /* search for topmost Via which indicate the transport protocol */  via = (osip_via_t *) osip_list_get (&request->vias, 0);  if (via == NULL || via->protocol == NULL)    {      OSIP_TRACE (osip_trace                  (__FILE__, __LINE__, OSIP_ERROR, NULL,                   "eXosip: missing via header\n"));      return -1;    }  if (answer==NULL)    a_from = request->from;  else    a_from = answer->to;  if (a_from == NULL || a_from->url == NULL)    return -1;  /*guess the local ip since req uri is known */  memset(locip, '\0', sizeof(locip));  if (a_from->url->username != NULL)    len = 2 + 4 + strlen (a_from->url->username) + 1 + 100 + 6 + 10 + strlen(eXosip.transport);  else    len = 2 + 4 + 100 + 6 + 10 + strlen(eXosip.transport);  contact = (char *) osip_malloc (len+1);  if (firewall_ip[0] != '\0')    {      char *c_address = request->req_uri->host;      struct addrinfo *addrinfo;      struct __eXosip_sockaddr addr;      int i;      i = eXosip_get_addrinfo (&addrinfo, request->req_uri->host, 5060, IPPROTO_TCP);      if (i == 0)        {	  memcpy (&addr, addrinfo->ai_addr, addrinfo->ai_addrlen);	  eXosip_freeaddrinfo (addrinfo);	  c_address = inet_ntoa (((struct sockaddr_in *) &addr)->sin_addr);	  OSIP_TRACE (osip_trace (__FILE__, __LINE__, OSIP_INFO1, NULL,				  "eXosip: here is the resolved destination host=%s\n",				  c_address));        }      if (eXosip_is_public_address (c_address))        {	  memcpy(locip, firewall_ip, sizeof(locip));	}    }  if (locip[0] == '\0')    {      eXosip_guess_ip_for_via (eXosip.eXtl->proto_family, locip, 49);      if (locip[0]=='\0')	{	  OSIP_TRACE (osip_trace		      (__FILE__, __LINE__, OSIP_ERROR, NULL,		       "eXosip: no default interface defined\n"));	  return -1;	}    }  if (eXosip.eXtl->proto_family == AF_INET6)    {      if (a_from->url->username != NULL)	snprintf (contact, len, "<sip:%s@[%s]:%s>", a_from->url->username,		  locip, firewall_port);      else	snprintf (contact, len-strlen(eXosip.transport)-10, "<sip:[%s]:%s>", locip, firewall_port);    }  else    {      if (a_from->url->username != NULL)	snprintf (contact, len, "<sip:%s@%s:%s>", a_from->url->username,		  locip, firewall_port);      else	snprintf (contact, len-strlen(eXosip.transport)-10, "<sip:%s:%s>", locip, firewall_port);    }  if (osip_strcasecmp(eXosip.transport, "UDP")!=0)    {      contact[strlen(contact)-1]='\0';      strcat(contact, ";transport=");      strcat(contact, eXosip.transport);      strcat(contact, ">");    }  osip_message_set_contact (request, contact);  osip_free (contact);  return 0;}int_eXosip_request_add_via(osip_message_t *request, const char *transport, const char *locip){  char tmp[200];  const char *ip=NULL;  char firewall_ip[65];  char firewall_port[10];  if (request==NULL)    return -1;  if (request->call_id==NULL)    return -1;  if (locip==NULL && request->call_id->host==NULL)    return -1;  if (locip!=NULL)    ip = locip;  else if (request->call_id->host!=NULL)    ip = request->call_id->host;  firewall_ip[0] = '\0';  firewall_port[0] = '\0';  if (eXosip.eXtl!=NULL && eXosip.eXtl->tl_get_masquerade_contact!=NULL)    {      eXosip.eXtl->tl_get_masquerade_contact(firewall_ip, sizeof(firewall_ip),					     firewall_port, sizeof(firewall_port));    }#ifdef MASQUERADE_VIA  /* this helps to work with a server that don't handle the     "received" parameter correctly. Some still exists. */  if (firewall_ip[0] != '\0')    {      ip = firewall_ip;    }#endif  if (firewall_port[0] == '\0')    {      snprintf(firewall_port, sizeof(firewall_port), "5060");    }  if (eXosip.eXtl->proto_family == AF_INET6)    snprintf (tmp, 200, "SIP/2.0/%s [%s]:%s;branch=z9hG4bK%u",	      eXosip.transport,	      ip, firewall_port, via_branch_new_random ());  else    {      if (eXosip.use_rport!=0)	snprintf (tmp, 200, "SIP/2.0/%s %s:%s;rport;branch=z9hG4bK%u",		  eXosip.transport,		  ip, firewall_port, via_branch_new_random ());      else	snprintf (tmp, 200, "SIP/2.0/%s %s:%s;branch=z9hG4bK%u",		  eXosip.transport,		  ip, firewall_port, via_branch_new_random ());	      }    osip_message_set_via (request, tmp);    return 0;}/* prepare a minimal request (outside of a dialog) with required headers *//*    method is the type of request. ("INVITE", "REGISTER"...)   to is the remote target URI   transport is either "TCP" or "UDP" (by now, only UDP is implemented!)*/intgenerating_request_out_of_dialog (osip_message_t ** dest, const char *method,                                  const char *to, const char *transport,                                  const char *from, const char *proxy){  /* Section 8.1:     A valid request contains at a minimum "To, From, Call-iD, Cseq,     Max-Forwards and Via   */  int i;  osip_message_t *request;  char locip[65];  int doing_register;  char *register_callid_number = NULL;  *dest = NULL;  if (eXosip.eXtl==NULL)    return -1;  /*guess the local ip since req uri is known */  memset(locip, '\0', sizeof(locip));  eXosip_guess_ip_for_via (eXosip.eXtl->proto_family, locip, 49);  if (locip[0]=='\0')    {      OSIP_TRACE (osip_trace                  (__FILE__, __LINE__, OSIP_ERROR, NULL,                   "eXosip: no default interface defined\n"));      return -1;    }  i = osip_message_init (&request);  if (i != 0)    return -1;  /* prepare the request-line */  osip_message_set_method (request, osip_strdup (method));  osip_message_set_version (request, osip_strdup ("SIP/2.0"));  osip_message_set_status_code (request, 0);  osip_message_set_reason_phrase (request, NULL);  doing_register = 0 == strcmp ("REGISTER", method);  if (doing_register)    {      osip_uri_init (&(request->req_uri));      i = osip_uri_parse (request->req_uri, proxy);      if (i != 0)        {          goto brood_error_1;        }      osip_message_set_to (request, from);  } else    {      /* in any cases except REGISTER: */      i = osip_message_set_to (request, to);      if (i != 0)        {          OSIP_TRACE (osip_trace                      (__FILE__, __LINE__, OSIP_ERROR, NULL,                       "ERROR: callee address does not seems to be a sipurl: %s\n",                       to));          goto brood_error_1;        }	  /* REMOVE ALL URL PARAMETERS from to->url headers and add them as headers */	  if (request->to!=NULL &&		  request->to->url!=NULL)	  {		  osip_uri_t *url = request->to->url;		  while (osip_list_size(&url->url_headers)>0)		  {			  osip_uri_header_t *u_header;			  u_header = (osip_uri_param_t *) osip_list_get (&url->url_headers, 0);			  if (u_header==NULL)				break;			  if (osip_strcasecmp(u_header->gname, "from")==0)			  {			  }			  else if (osip_strcasecmp(u_header->gname, "to")==0)			  {			  }			  else if (osip_strcasecmp(u_header->gname, "call-id")==0)			  {			  }			  else if (osip_strcasecmp(u_header->gname, "cseq")==0)			  {			  }			  else if (osip_strcasecmp(u_header->gname, "via")==0)			  {			  }			  else if (osip_strcasecmp(u_header->gname, "contact")==0)			  {			  }			  else				  osip_message_set_header(request, u_header->gname, u_header->gvalue);			  osip_list_remove (&url->url_headers, 0);			  osip_uri_param_free (u_header);		  }	  }      if (proxy != NULL && proxy[0] != 0)        {                       /* equal to a pre-existing route set */          /* if the pre-existing route set contains a "lr" (compliance             with bis-08) then the req_uri should contains the remote target             URI */          osip_uri_param_t *lr_param;          osip_route_t *o_proxy;          osip_route_init (&o_proxy);          i = osip_route_parse (o_proxy, proxy);          if (i != 0)            {              osip_route_free (o_proxy);              goto brood_error_1;            }          osip_uri_uparam_get_byname (o_proxy->url, "lr", &lr_param);          if (lr_param != NULL) /* to is the remote target URI in this case! */            {              osip_uri_clone (request->to->url, &(request->req_uri));              /* "[request] MUST includes a Route header field containing                 the route set values in order." */              osip_list_add (&request->routes, o_proxy, 0);          } else            /* if the first URI of route set does not contain "lr", the req_uri               is set to the first uri of route set */            {              request->req_uri = o_proxy->url;              o_proxy->url = NULL;              osip_route_free (o_proxy);              /* add the route set */              /* "The UAC MUST add a route header field containing                 the remainder of the route set values in order.                 The UAC MUST then place the remote target URI into                 the route header field as the last value               */              osip_message_set_route (request, to);            }      } else                    /* No route set (outbound proxy) is used */        {          /* The UAC must put the remote target URI (to field) in the req_uri */          i = osip_uri_clone (request->to->url, &(request->req_uri));          if (i != 0)            goto brood_error_1;        }    }  if (locip[0]=='\0')    goto brood_error_1;  /* set To and From */  osip_message_set_from (request, from);  if (request->from==NULL)    goto brood_error_1;  /* add a tag */  osip_from_set_tag (request->from, osip_from_tag_new_random ());  /* set the cseq and call_id header */  {    osip_call_id_t *callid;    osip_cseq_t *cseq;    char *num;    char *cidrand;    /* call-id is always the same for REGISTRATIONS */    i = osip_call_id_init (&callid);    if (i != 0)      goto brood_error_1;    cidrand = osip_call_id_new_random ();    osip_call_id_set_number (callid, cidrand);    if (doing_register)      register_callid_number = cidrand;#if 0    osip_call_id_set_host (callid, osip_strdup (locip));#endif    request->call_id = callid;    i = osip_cseq_init (&cseq);    if (i != 0)      goto brood_error_1;    num = osip_strdup (doing_register ? "1" : "20");    osip_cseq_set_number (cseq, num);    osip_cseq_set_method (cseq, osip_strdup (method));    request->cseq = cseq;  }  i = _eXosip_request_add_via(request, transport, locip);  if (i != 0)    goto brood_error_1;  /* always add the Max-Forward header */  osip_message_set_max_forwards (request, "70"); /* a UA should start a request with 70 */  if (0 == strcmp ("REGISTER", method))    {  } else if (0 == strcmp ("INFO", method))    {  } else if (0 == strcmp ("OPTIONS", method))    {      osip_message_set_accept (request, "application/sdp");    }  osip_message_set_user_agent (request, eXosip.user_agent);  /*  else if ... */  *dest = request;  return 0;brood_error_1:  osip_message_free (request);  *dest = NULL;  return -1;}intgenerating_register (eXosip_reg_t * jreg, osip_message_t ** reg, char *transport, char *from,                     char *proxy, char *contact, int expires){  osip_from_t *a_from;  int i;  char locip[65];  char firewall_ip[65];  char firewall_port[10];  if (eXosip.eXtl==NULL)    return -1;  if (eXosip.eXtl->tl_get_masquerade_contact!=NULL)    {      eXosip.eXtl->tl_get_masquerade_contact(firewall_ip, sizeof(firewall_ip),

⌨️ 快捷键说明

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