79 lines
2.2 KiB
C
79 lines
2.2 KiB
C
/*
|
|
Copyright (C) 2002-2008 Thomas Ries <tries@gmx.net>
|
|
|
|
This file is part of Siproxd.
|
|
|
|
Siproxd 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.
|
|
|
|
Siproxd 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 Siproxd; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include <osipparser2/osip_parser.h>
|
|
#include <log.h>
|
|
|
|
static char const ident[]="$Id$";
|
|
|
|
/*
|
|
* This file contains wrapper functions to call the osip2_ library.
|
|
* depending on the used version of libosip2, the calling arguments
|
|
* differ. E.g. Libosip2-2.2.0 (against 2.0.9) introduces a "size"
|
|
* argument for a number of functions used by siproxd.
|
|
*/
|
|
|
|
int sip_message_parse(osip_message_t * sip, const char *buf, size_t len) {
|
|
return osip_message_parse(sip, buf, len);
|
|
}
|
|
|
|
int sip_message_to_str(osip_message_t * sip, char **dest, size_t *len) {
|
|
int sts;
|
|
/* check params */
|
|
if ((len == NULL) || (dest == NULL)) return -1;
|
|
|
|
*len=0;
|
|
|
|
sts = osip_message_to_str(sip, dest, len);
|
|
if (sts == 0) {
|
|
/*
|
|
* NULL termination (libosip2-2.2.0 does NOT do this properly,
|
|
* there is always one byte too much :-( )
|
|
*/
|
|
if (*len >= 0) (*dest)[*len]='\0';
|
|
}
|
|
|
|
return sts;
|
|
}
|
|
|
|
int sip_body_to_str(const osip_body_t * body, char **dest, size_t *len) {
|
|
int sts;
|
|
/* check params */
|
|
if ((len == NULL) || (dest == NULL)) return -1;
|
|
|
|
*len=0;
|
|
|
|
sts = osip_body_to_str(body, dest, len);
|
|
if (sts == 0) {
|
|
/*
|
|
* NULL termination (libosip2-2.2.0 does NOT do this properly,
|
|
* there is always one byte too much :-( )
|
|
*/
|
|
if (*len >= 0) (*dest)[*len]='\0';
|
|
}
|
|
|
|
return sts;
|
|
}
|
|
|
|
int sip_message_set_body(osip_message_t * sip, const char *buf, size_t len) {
|
|
return osip_message_set_body(sip, buf, len);
|
|
}
|
|
|