Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
external
sofia-sip
Commits
83e858a1
Commit
83e858a1
authored
Oct 12, 2005
by
Pekka Pessi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cvs ci darcs-to-cvs-2005-10-12
darcs-hash:20051012184131-65a35-292dfa6b6e6c9c6ff41b5ca83343b9bc4284255d.gz
parent
4df15520
Changes
22
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
142 additions
and
26 deletions
+142
-26
ChangeLog
ChangeLog
+7
-0
libsofia-sip-ua/docs/ChangeLog
libsofia-sip-ua/docs/ChangeLog
+6
-0
libsofia-sip-ua/msg/ChangeLog
libsofia-sip-ua/msg/ChangeLog
+6
-0
libsofia-sip-ua/msg/msg.h
libsofia-sip-ua/msg/msg.h
+2
-2
libsofia-sip-ua/nta/ChangeLog
libsofia-sip-ua/nta/ChangeLog
+11
-0
libsofia-sip-ua/nta/nta.c
libsofia-sip-ua/nta/nta.c
+2
-2
libsofia-sip-ua/nua/ChangeLog
libsofia-sip-ua/nua/ChangeLog
+41
-0
libsofia-sip-ua/nua/nua_stack.c
libsofia-sip-ua/nua/nua_stack.c
+2
-2
libsofia-sip-ua/sip/ChangeLog
libsofia-sip-ua/sip/ChangeLog
+11
-0
libsofia-sip-ua/sip/sip_util.c
libsofia-sip-ua/sip/sip_util.c
+2
-2
libsofia-sip-ua/sip/sip_util.h
libsofia-sip-ua/sip/sip_util.h
+2
-2
libsofia-sip-ua/soa/ChangeLog
libsofia-sip-ua/soa/ChangeLog
+22
-0
libsofia-sip-ua/soa/soa.c
libsofia-sip-ua/soa/soa.c
+2
-2
libsofia-sip-ua/soa/soa_static.c
libsofia-sip-ua/soa/soa_static.c
+2
-2
libsofia-sip-ua/soa/test_soa.c
libsofia-sip-ua/soa/test_soa.c
+2
-2
libsofia-sip-ua/su/ChangeLog
libsofia-sip-ua/su/ChangeLog
+12
-0
libsofia-sip-ua/su/su_alloc.c
libsofia-sip-ua/su/su_alloc.c
+2
-2
libsofia-sip-ua/su/su_configure.h.in
libsofia-sip-ua/su/su_configure.h.in
+1
-1
libsofia-sip-ua/su/su_tag.h
libsofia-sip-ua/su/su_tag.h
+2
-2
libsofia-sip-ua/su/su_tag_test.c
libsofia-sip-ua/su/su_tag_test.c
+2
-2
libsofia-sip-ua/su/su_taglist.c
libsofia-sip-ua/su/su_taglist.c
+2
-2
m4/sac-su2.m4
m4/sac-su2.m4
+1
-1
No files found.
ChangeLog
View file @
83e858a1
2005-10-12 Pekka Pessi <Pekka.Pessi@nokia.com>
* Defining SU_HAVE_TAGSTACK.
M ./libsofia-sip-ua/su/su_configure.h.in +3
M ./m4/sac-su2.m4 +6
2005-10-10 Pekka Pessi <Pekka.Pessi@nokia.com>
* Added --without-glib option, added SU_HAVE_GLIB in su_configure.h.
...
...
libsofia-sip-ua/docs/ChangeLog
View file @
83e858a1
2005-10-12 Pekka Pessi <Pekka.Pessi@nokia.com>
* Fixed aliases for Doxygen 1.4.
M ./libsofia-sip-ua/docs/Doxyfile.aliases -6 +6
2005-09-08 Kai Vehmanen <kai.vehmanen@nokia.com>
* hide_emails.sh: Fixed bug in hiding addresses of
...
...
libsofia-sip-ua/msg/ChangeLog
View file @
83e858a1
2005-10-12 Pekka Pessi <Pekka.Pessi@nokia.com>
* Fixed msg_home() macro.
M ./libsofia-sip-ua/msg/msg.h -1 +1
2005-10-10 Pekka Pessi <Pekka.Pessi@nokia.com>
* Dox fix to msg_header_replace().
...
...
libsofia-sip-ua/msg/msg.h
View file @
83e858a1
...
...
@@ -23,7 +23,7 @@
*/
#ifndef MSG_H
/** Defined when msg.h has been included */
#define MSG_H "$Id: msg.h,v 1.
2
2005/
08/03 17:17:54
ppessi Exp $"
#define MSG_H "$Id: msg.h,v 1.
3
2005/
10/12 18:32:48
ppessi Exp $"
/**@ingroup msg
* @file msg.h
*
...
...
@@ -33,7 +33,7 @@
*
* @date Created: Fri Feb 18 08:54:48 2000 ppessi
*
* $Date: 2005/
08/03 17:17:54
$
* $Date: 2005/
10/12 18:32:48
$
*
*/
...
...
libsofia-sip-ua/nta/ChangeLog
View file @
83e858a1
2005-10-12 Pekka Pessi <Pekka.Pessi@nokia.com>
* Contact generated by nta now contains URL transport parameter.
The transport=UDP was left out from contact URL always. Now it is left out
only if both UDP and TCP are supported.
Added utility function sip_contact_create_from_via_with_transport().
M ./libsofia-sip-ua/nta/nta.c -2 +14
M ./libsofia-sip-ua/sip/sip_util.c -10 +28
M ./libsofia-sip-ua/sip/sip_util.h +6
2005-10-10 Pekka Pessi <Pekka.Pessi@nokia.com>
* Fixed memory leak in nta_agent_create()/nta_agent_destroy().
...
...
libsofia-sip-ua/nta/nta.c
View file @
83e858a1
...
...
@@ -40,12 +40,12 @@
* @author Pekka Pessi <Pekka.Pessi@nokia.com>
*
* @date Created: Tue Jun 13 02:57:51 2000 ppessi
* $Date: 2005/10/1
1 09:02:36
$
* $Date: 2005/10/1
2 18:32:48
$
*/
#include "config.h"
const
char
nta_c_id
[]
=
"$Id: nta.c,v 1.
7
2005/10/1
1 09:02:36
ppessi Exp $"
;
const
char
nta_c_id
[]
=
"$Id: nta.c,v 1.
8
2005/10/1
2 18:32:48
ppessi Exp $"
;
/* From AM_INIT/AC_INIT in our "config.h" */
char
const
nta_version
[]
=
VERSION
;
...
...
libsofia-sip-ua/nua/ChangeLog
View file @
83e858a1
2005-10-12 Pekka Pessi <Pekka.Pessi@nokia.com>
* Added test for call hold.
M ./libsofia-sip-ua/nua/test_nua.c +241
* Added better logging functions.
M ./libsofia-sip-ua/nua/test_nua.c -77 +149
* LDADD now have dependencies.
M ./libsofia-sip-ua/nua/Makefile.am -15 +15
* Added call reject cases.
M ./libsofia-sip-ua/nua/test_nua.c -62 +461
* When call is retried or terminated, always send nua_i_state after
nua_r_invite().
M ./libsofia-sip-ua/nua/nua_stack.c -53 +55
* Fixed reference counting bug in process_ack().
M ./libsofia-sip-ua/nua/nua_stack.c -6 +2
2005-10-11 Pekka Pessi <Pekka.Pessi@nokia.com>
* Used picture-mode (cleaned up whitespace at eol).
M ./libsofia-sip-ua/nua/test_nua.c -23 +23
* Testing call flow on client side, too.
M ./libsofia-sip-ua/nua/test_nua.c -17 +94
* Transitions terminating call. Added letter C, S, and T to transitions.
M ./libsofia-sip-ua/nua/nua.docs -72 +159
2005-10-10 Pekka Pessi <Pekka.Pessi@nokia.com>
* Fixed basic call test run.
...
...
libsofia-sip-ua/nua/nua_stack.c
View file @
83e858a1
...
...
@@ -31,13 +31,13 @@
* @author Tat Chan <Tat.Chan@nokia.com>
*
* @date Created: Wed Feb 14 18:32:58 2001 ppessi
* $Date: 2005/10/1
1 09:02:37
$
* $Date: 2005/10/1
2 18:32:48
$
*/
#include "config.h"
const
char
_nua_stack_c_id
[]
=
"$Id: nua_stack.c,v 1.1
6
2005/10/1
1 09:02:37
ppessi Exp $"
;
"$Id: nua_stack.c,v 1.1
7
2005/10/1
2 18:32:48
ppessi Exp $"
;
#include <stddef.h>
#include <stdlib.h>
...
...
libsofia-sip-ua/sip/ChangeLog
View file @
83e858a1
2005-10-12 Pekka Pessi <Pekka.Pessi@nokia.com>
* Contact generated by nta now contains URL transport parameter.
The transport=UDP was left out from contact URL always. Now it is left out
only if both UDP and TCP are supported.
Added utility function sip_contact_create_from_via_with_transport().
M ./libsofia-sip-ua/nta/nta.c -2 +14
M ./libsofia-sip-ua/sip/sip_util.c -10 +28
M ./libsofia-sip-ua/sip/sip_util.h +6
2005-08-01 Pekka Pessi <Pekka.Pessi@nokia.com>
* Makefile.am: Added sip_bad_mask.
...
...
libsofia-sip-ua/sip/sip_util.c
View file @
83e858a1
...
...
@@ -23,7 +23,7 @@
*/
const
char
_sip_util_c_id
[]
=
"$Id: sip_util.c,v 1.
3
2005/
09/09 10:56:31
ppessi Exp $"
;
"$Id: sip_util.c,v 1.
4
2005/
10/12 18:32:48
ppessi Exp $"
;
/**@CFILE sip_util.c
*
* SIP utility functions.
...
...
@@ -31,7 +31,7 @@ const char _sip_util_c_id[] =
* @author Pekka Pessi <Pekka.Pessi@nokia.com>.
*
* @date Created: Tue Jun 13 02:57:51 2000 ppessi
* $Date: 2005/
09/09 10:56:31
$
* $Date: 2005/
10/12 18:32:48
$
*/
#include "config.h"
...
...
libsofia-sip-ua/sip/sip_util.h
View file @
83e858a1
...
...
@@ -24,7 +24,7 @@
#ifndef SIP_UTIL_H
/** Defined when <sip_util.h> has been included. */
#define SIP_UTIL_H \
"$Id: sip_util.h,v 1.
3
2005/
09/09 10:56:31
ppessi Exp $"
"$Id: sip_util.h,v 1.
4
2005/
10/12 18:32:48
ppessi Exp $"
/**@file sip_util.h
* @brief SIP utility functions
...
...
@@ -32,7 +32,7 @@
* @author Pekka Pessi <Pekka.Pessi@nokia.com>.
*
* @date Created: Thu Jun 8 19:28:55 2000 ppessi
* $Date: 2005/
09/09 10:56:31
$
* $Date: 2005/
10/12 18:32:48
$
*/
#ifndef SIP_H
...
...
libsofia-sip-ua/soa/ChangeLog
View file @
83e858a1
2005-10-12 Pekka Pessi <Pekka.Pessi@nokia.com>
* Added more logging.
M ./libsofia-sip-ua/soa/soa_static.c -1 +17
* Using SDP O/A result to determine media activity.
M ./libsofia-sip-ua/soa/soa.c -2 +2
* Sanitized soa_sdp_upgrade_is_needed().
M ./libsofia-sip-ua/soa/soa_static.c -27 +11
* Fixed active tests.
M ./libsofia-sip-ua/soa/test_soa.c -36 +36
* Fixed soa_get_paramlist() for complex cases.
M ./libsofia-sip-ua/soa/soa.c -1 +1
2005-09-29 Pekka Pessi <Pekka.Pessi@nokia.com>
* Added SOATAG_ACTIVE_* stuff.
...
...
libsofia-sip-ua/soa/soa.c
View file @
83e858a1
...
...
@@ -28,13 +28,13 @@
* @author Pekka Pessi <Pekka.Pessi@nokia.com>
*
* @date Created: Wed Aug 3 20:27:15 EEST 2005
* $Date: 2005/
09/29
18:3
5:22
$
* $Date: 2005/
10/12
18:3
2:48
$
*/
#include "config.h"
const
char
soa_c_id
[]
=
"$Id: soa.c,v 1.
7
2005/
09/29
18:3
5:22
ppessi Exp $"
;
"$Id: soa.c,v 1.
8
2005/
10/12
18:3
2:48
ppessi Exp $"
;
#include <stddef.h>
#include <stdlib.h>
...
...
libsofia-sip-ua/soa/soa_static.c
View file @
83e858a1
...
...
@@ -29,7 +29,7 @@
* @author Pekka Pessi <Pekka.Pessi@nokia.com>
*
* @date Created: Tue Aug 16 17:06:06 EEST 2005
* $Date: 2005/
09/28 20:05:24
$
* $Date: 2005/
10/12 18:32:48
$
*
* @par Use-cases
* 1. no existing session
...
...
@@ -49,7 +49,7 @@
#include "config.h"
const
char
soa_static_c_id
[]
=
"$Id: soa_static.c,v 1.
5
2005/
09/28 20:05:24
ppessi Exp $"
;
"$Id: soa_static.c,v 1.
6
2005/
10/12 18:32:48
ppessi Exp $"
;
#include <stddef.h>
#include <stdlib.h>
...
...
libsofia-sip-ua/soa/test_soa.c
View file @
83e858a1
...
...
@@ -28,13 +28,13 @@
* @author Pekka Pessi <Pekka.Pessi@nokia.com>
*
* @date Created: Wed Aug 17 12:12:12 EEST 2005 ppessi
* $Date: 2005/
09/29
18:3
5:22
$
* $Date: 2005/
10/12
18:3
2:48
$
*/
#include "config.h"
const
char
test_soa_c_id
[]
=
"$Id: test_soa.c,v 1.
5
2005/
09/29
18:3
5:22
ppessi Exp $"
;
"$Id: test_soa.c,v 1.
6
2005/
10/12
18:3
2:48
ppessi Exp $"
;
#include <stddef.h>
#include <stdlib.h>
...
...
libsofia-sip-ua/su/ChangeLog
View file @
83e858a1
2005-10-12 Pekka Pessi <Pekka.Pessi@nokia.com>
* Added tl_llist(), tl_vllist(). Better semantics for tl_next().
M ./libsofia-sip-ua/su/su_tag.h -1 +3
M ./libsofia-sip-ua/su/su_tag_test.c -5 +26
M ./libsofia-sip-ua/su/su_taglist.c -7 +102
* su_home_auto() now accepts unaligned pointer.
M ./libsofia-sip-ua/su/su_alloc.c -4 +11
2005-10-11 Pekka Pessi <Pekka.Pessi@nokia.com>
* Fixed superfluous assertion failure here.
...
...
libsofia-sip-ua/su/su_alloc.c
View file @
83e858a1
...
...
@@ -28,13 +28,13 @@
* @author Pekka Pessi <Pekka.Pessi@nokia.com>.
*
* @date Created: Thu Aug 19 01:12:25 1999 ppessi
* $Date: 2005/10/1
1 09:02:37
$
* $Date: 2005/10/1
2 18:32:48
$
*/
#include "config.h"
char
const
su_alloc_c_id
[]
=
"$Id: su_alloc.c,v 1.
5
2005/10/1
1 09:02:37
ppessi Exp $"
;
"$Id: su_alloc.c,v 1.
6
2005/10/1
2 18:32:48
ppessi Exp $"
;
/**@defgroup su_alloc Memory Management Tutorial
*
...
...
libsofia-sip-ua/su/su_configure.h.in
View file @
83e858a1
...
...
@@ -24,7 +24,7 @@
#ifndef SU_CONFIGURE_H /** Defined when <su_configure.h> has been included. */
#define SU_CONFIGURE_H \
"$Id: su_configure.h.in,v 1.
2
2005/10/1
1 09:02:37
ppessi Exp $"
"$Id: su_configure.h.in,v 1.
3
2005/10/1
2 18:32:48
ppessi Exp $"
/**@file su_configure.h
*
* Autoconf configuration for SU library.
...
...
libsofia-sip-ua/su/su_tag.h
View file @
83e858a1
...
...
@@ -23,7 +23,7 @@
*/
#ifndef SU_TAG_H
/** Defined when su_tag.h has been included. */
#define SU_TAG_H "$Id: su_tag.h,v 1.
2
2005/
09/28 20:05:24
ppessi Exp $"
#define SU_TAG_H "$Id: su_tag.h,v 1.
3
2005/
10/12 18:32:48
ppessi Exp $"
/**@SU_TAG
* @file su_tag.h Object-oriented tags and tag list interface.
...
...
@@ -31,7 +31,7 @@
* @author Pekka Pessi <Pekka.Pessi@nokia.com>
*
* @date Created: Tue Feb 20 19:48:18 2001 ppessi
* $Date: 2005/
09/28 20:05:24
$
* $Date: 2005/
10/12 18:32:48
$
*/
#ifndef SU_CONFIG_H
...
...
libsofia-sip-ua/su/su_tag_test.c
View file @
83e858a1
...
...
@@ -23,7 +23,7 @@
*/
const
char
_su_tag_test_c_id
[]
=
"$Id: su_tag_test.c,v 1.
1.1.1
2005/
07/20 20:35:58 kaiv
Exp $"
;
"$Id: su_tag_test.c,v 1.
2
2005/
10/12 18:32:48 ppessi
Exp $"
;
/**@SU_TAG
*
...
...
@@ -34,7 +34,7 @@ const char _su_tag_test_c_id[] =
* @author Pekka Pessi <Pekka.Pessi@nokia.com>
*
* @date Created: Tue Mar 6 18:33:42 2001 ppessi
* $Date: 2005/
07/20 20:35:5
8 $
* $Date: 2005/
10/12 18:32:4
8 $
*/
#include "config.h"
...
...
libsofia-sip-ua/su/su_taglist.c
View file @
83e858a1
...
...
@@ -31,13 +31,13 @@
* @author Pekka Pessi <Pekka.Pessi@nokia.com>
*
* @date Created: Tue Feb 20 20:03:38 2001 ppessi
* $Date: 2005/
09/28 20:05:24
$
* $Date: 2005/
10/12 18:32:48
$
*/
#include "config.h"
const
char
su_taglist_c_id
[]
=
"$Id: su_taglist.c,v 1.
2
2005/
09/28 20:05:24
ppessi Exp $"
;
"$Id: su_taglist.c,v 1.
3
2005/
10/12 18:32:48
ppessi Exp $"
;
#include <stdlib.h>
#include <string.h>
...
...
m4/sac-su2.m4
View file @
83e858a1
...
...
@@ -9,7 +9,7 @@ dnl automake complains about missing su/su_configure.h.
AC_DEFUN([SAC_SOFIA_SU], [
# Beginning of SAC_SOFIA_SU
# $Id: sac-su2.m4,v 1.
4
2005/10/1
1 09:02:37
ppessi Exp $
# $Id: sac-su2.m4,v 1.
5
2005/10/1
2 18:32:48
ppessi Exp $
AC_REQUIRE([SAC_WITH_RT])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment