This posting was generated automatically from darcs repo
<http://sofia-sip.openlaboratory.net/repos>.


Fri May 12 19:37:01 EEST 2006  [EMAIL PROTECTED]
  tagged rel-sofia-sip-1_11_8


Fri May 12 19:36:50 EEST 2006  [EMAIL PROTECTED]
  * Release 1.11.8.

    M ./RELEASE -3 +3
    M ./configure.ac -1 +1

Fri May 12 19:35:30 EEST 2006  [EMAIL PROTECTED]
  * Updates for win32.
  Added SOFIAPUBFUN to few functions in msg_parser().
  Added new C++ wrappers for C files that need C++ linkage in tport_test.
  Fixed setlocal braino in build_sources.cmd.

    M ./libsofia-sip-ua/msg/sofia-sip/msg_mclass.h -1 +2
    M ./libsofia-sip-ua/msg/sofia-sip/msg_parser.h -8 +9
    M ./libsofia-sip-ua/msg/test_protos.h.in -7 +7
    M ./libsofia-sip-ua/su/sofia-sip/su_config.h -10 +10
    M ./libsofia-sip-ua/tport/test_tport.c -1 +1
    M ./win32/Makefile.am +2
    M ./win32/build_sources.cmd -1 +1
    M ./win32/check.cmd +3
    A ./win32/tests/test_tport/test_class.cpp
    A ./win32/tests/test_tport/test_table.cpp
    M ./win32/tests/test_tport/test_tport.dsp -2 +2

Fri May 12 18:07:22 EEST 2006  [EMAIL PROTECTED]
  * Compiling and linking torture_su_bm and torture_su_port as static on win32.

    M ./win32/SofiaSIP.dsw -2 +2
    M ./win32/tests/torture_su_bm/torture_su_bm.dsp -2 +2
    M ./win32/tests/torture_su_port/torture_su_port.dsp -2 +2

Fri May 12 17:59:40 EEST 2006  [EMAIL PROTECTED]
  * Added more warnings to ignore on VC to win32/config.h.in.

    M ./win32/config.h.in -2 +2

Fri May 12 17:57:49 EEST 2006  [EMAIL PROTECTED]
  * Added files missing from dist to win32/Makefile.am

    M ./win32/Makefile.am +3

Fri May 12 17:47:31 EEST 2006  [EMAIL PROTECTED]
  * Added msg_get_address() and msg_set_address() functions to <msg_addr.h>
  Trying to solve ai_addrlen problem.

    M ./libsofia-sip-ua/msg/msg.c -3 +36
    M ./libsofia-sip-ua/msg/sofia-sip/msg_addr.h -1 +6
    M ./libsofia-sip-ua/tport/sofia-sip/tport_plugins.h -1 +3
    M ./libsofia-sip-ua/tport/tport.c -5 +5
    M ./libsofia-sip-ua/tport/tport_internal.h -2 +5
    M ./libsofia-sip-ua/tport/tport_sigcomp.c -7 +4
    M ./libsofia-sip-ua/tport/tport_stub_sigcomp.c -2 +4
    M ./libsofia-sip-ua/tport/tport_stub_stun.c -5 +3
    M ./libsofia-sip-ua/tport/tport_type_sctp.c -3 +1
    M ./libsofia-sip-ua/tport/tport_type_tcp.c -3 +1
    M ./libsofia-sip-ua/tport/tport_type_tls.c -3 +1
    M ./libsofia-sip-ua/tport/tport_type_udp.c -10 +9

Fri May 12 17:00:09 EEST 2006  [EMAIL PROTECTED]
  * Put last fixes into RELEASE file.

    M ./RELEASE -28 +10

Fri May 12 16:55:52 EEST 2006  [EMAIL PROTECTED]
  * Fixed binding problems in nua and nta.c.
  Returning more appropriate error code from tport_tbind(), too.
  This patch fixes tracked bugs 
  #1485624 (nua not binding to 5060), 
  #1485625 (nua_create() fails if STUN init fails) and 
  #1485632 (ncorrect error message for nua bind error).
  Nua now also binds both to NUTAG_URL and NUTAG_SIPS_URL() URIs, nua_create()
  fails if binding either of them fails.

    M ./libsofia-sip-ua/nta/nta.c -5 +9
    M ./libsofia-sip-ua/nua/nua_register.c -29 +32
    M ./libsofia-sip-ua/stun/stun.c -4 +8
    M ./libsofia-sip-ua/tport/tport.c -5 +2

Fri May 12 15:37:39 EEST 2006  [EMAIL PROTECTED]
  * Fixed msg_addrlen() usage.
  
  msg_addrlen() returns a pointer to ai_addrlen field of struct addrinfo
  inside the msg_t object. ai_addrlen has type size_t. However, system calls
  taking a return valur pointer to address length, use type socklen_t. 
  Typically size_t is unsigned long, socklen_t is int, so casting
  msg_addrlen() return value to (socklen_t *) will break on (high-endian)
  64-bit platforms. svsp.

    M ./libsofia-sip-ua/msg/test_msg.c -1 +2
    M ./libsofia-sip-ua/tport/tport.c -3 +2
    M ./libsofia-sip-ua/tport/tport_type_udp.c -3 +8

Fri May 12 15:13:52 EEST 2006  [EMAIL PROTECTED]
  * Re-enable natify in test_nua.c.

    M ./libsofia-sip-ua/nua/test_nua.c -1 +1

Fri May 12 15:11:42 EEST 2006  [EMAIL PROTECTED]
  * Updated nua_register() and NUTAG_OUTBOUND() documentation.
  Taking NUTAG_OUTBOUND() options correctly into account in outbound.c.
  Improved the contact validation process in outbound.c, too.

    M ./libsofia-sip-ua/nua/nua_register.c -25 +46
    M ./libsofia-sip-ua/nua/outbound.c -72 +99
    M ./libsofia-sip-ua/nua/sofia-sip/nua_tag.h +23
    M ./libsofia-sip-ua/nua/test_nua.c -1 +3

Fri May 12 15:08:05 EEST 2006  [EMAIL PROTECTED]
  * Silenced warnings caused by mismatching integral types.
  In nua_session, unsigned v. sip_time_t.
  In tport.c, size_t v. socklen_t.

    M ./libsofia-sip-ua/nua/nua_session.c -2 +2
    M ./libsofia-sip-ua/tport/tport.c -6 +10

Fri May 12 12:27:16 EEST 2006  [EMAIL PROTECTED]
  * Fixed socket semantics on test_nat.c for BSD, too.

    M ./libsofia-sip-ua/nua/test_nat.c -3 +5

Fri May 12 11:59:47 EEST 2006  [EMAIL PROTECTED]
  * Fixed type of msg_addrlen() to size_t in msg_addr.h/msg.c.
  POSIX socklen_t is not used in addrinfo. We use addrinfo.

    M ./libsofia-sip-ua/msg/msg.c -1 +1
    M ./libsofia-sip-ua/msg/sofia-sip/msg_addr.h -1 +1
    M ./libsofia-sip-ua/msg/test_msg.c -14 +10

Fri May 12 11:30:57 EEST 2006  [EMAIL PROTECTED]
  * Added Changes to RELEASE.

    M ./RELEASE -1 +9

Fri May 12 11:30:25 EEST 2006  [EMAIL PROTECTED]
  * Fixed DIST_SUBDIRS at toplevel Makefile.am.

    M ./Makefile.am -1 +1

Fri May 12 11:21:16 EEST 2006  [EMAIL PROTECTED]
  * Fixed AM_LDFLAGS in sresolv/Makefile.am.

    M ./libsofia-sip-ua/sresolv/Makefile.am -1 +1

Fri May 12 10:04:07 EEST 2006  [EMAIL PROTECTED]
  * Not declaring inline functions with global scope in 
<sofia-sip/http_header.h>

    M ./libsofia-sip-ua/http/sofia-sip/http_header.h +2

Fri May 12 09:59:24 EEST 2006  [EMAIL PROTECTED]
  * Added su_source_create() prototype to su-glib/so_source.c.

    M ./libsofia-sip-ua-glib/su-glib/sofia-sip/su_source.h -1 +1
    M ./libsofia-sip-ua-glib/su-glib/su_source.c -2 +3


-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Sofia-sip-devel mailing list
Sofia-sip-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sofia-sip-devel

Reply via email to