1. 42e9e5f Fixed bug in static buffer based pool: thread local strorage leakage by Benny Prijono · 18 years ago
  2. 0f3173d Fixed bug in log length calculation (null character was included) [thanks Klaus Darilion] by Benny Prijono · 18 years ago
  3. ba74777 Fixed another typo in pj\types.h comment [thanks Tomasz Ostrowski] by Benny Prijono · 18 years ago
  4. 4784d77 Fixed typos in pj_*int*_t's comments [thanks Tomasz Ostrowski]. by Benny Prijono · 18 years ago
  5. fa9e5b1 Major addition to support DNS SRV resolution in PJSIP: by Benny Prijono · 18 years ago
  6. dd71058 Changed puts() to printf() in log_writer_stdout.c, since puts() introduced extra newline. by Benny Prijono · 18 years ago
  7. 3059eb6 Fixed compilation errors when threading is disabled (PJ_HAS_THREADS=0) and safe ioqueue unregistration is disabled (PJ_IOQUEUE_HAS_SAFE_UNREG=0). Also increase PJ_IOQUEUE_MAX_HANDLES for minimum config to 16 in config_sample.h [thanks Olivier Gournet]. by Benny Prijono · 18 years ago
  8. 2b2757b Changed fputs() to puts() in log_writer_stdout.c, since it's suspected to crash GUI applications. by Benny Prijono · 18 years ago
  9. 3ae5f06 Fixed bug in the hash table size calculation. The hash table creation API (pj_hash_create()) suggests that the size should be 2^n-1, and when the size is not 2^n-1, it will be rounded-up to the nearest 2^n-1, except when the size is exactly 2^n, then it will be rounded-down to 2^n-1. by Benny Prijono · 18 years ago
  10. e71c360 Fixed minor error in pj_thread_is_registered() API. The return value should be pj_bool_t instead of pj_status_t. (Note: this change should not break anything). by Benny Prijono · 18 years ago
  11. d424f5b Added initial implementation of low-level DNS packetization by Benny Prijono · 18 years ago
  12. 2d34d6b Version 0.5.8 by Benny Prijono · 18 years ago
  13. 5ee1f2e Updated doxygen documentation for the website by Benny Prijono · 18 years ago
  14. dc752ca Fixed few bugs that seem to have been introduced by new dialog by Benny Prijono · 18 years ago
  15. d524e82 In pjsua, outgoing REFER now always put Refer-Sub: false by Benny Prijono · 18 years ago
  16. 7d93d4e Added pool for allocating memory from the stack buffer by Benny Prijono · 18 years ago
  17. cca3281 Applied temporary fix to error code returned by pj_gethostbyname(). Under *nix, the error code is returned in h_errno, and the error string is reported by hstrerror(). But it is a bit too complex to support this for the moment, so we just return PJ_ERESOLVE for any failure returned by gethostbyname() by Benny Prijono · 18 years ago
  18. 594e4c5 Fix the local IP address resolution issue in PJSIP, PJMEDIA, and PJSUA, by adding a new API pj_gethostip() to resolve the default local IP address of local host. This new function will work even when local hostname resolution is not set correctly, by detecting the default IP interface in the system. by Benny Prijono · 18 years ago
  19. 893628d Fixed compilation error in Linux when the legacy configure is being used: multiple declaration of socklen_t. Also does similar things with os_sunos, os_darwinos, and os_rtems by Benny Prijono · 18 years ago
  20. ea4296c SIP methods are now compared case-sensitively (previously it was case-insensitive) because the standard says so. There's no ill effect of the old behavior, but it's still important that we do things according to what the standard says. by Benny Prijono · 18 years ago
  21. 369efaa Fixed mutex leaking in Linux: pj_mutex_destroy() will fail to destroy the mutex if the mutex is currently being held. Unfortunately it is quite common in the libraries to acquire the mutex first before destroying it, causing mutexes to leak. The solution is to retry unlocking/destroying the mutex several times (currently 4) while pthread_mutex_destroy() returns EBUSY by Benny Prijono · 18 years ago
  22. 1d97162 Fixed autoconf in various other systems (IA64, x86_64, BSD/FreeBSD) by Benny Prijono · 18 years ago
  23. c5b6dbf Fixed autoconf in mingw by Benny Prijono · 18 years ago
  24. b466e23 Fixed autoconf on MacOS X by Benny Prijono · 18 years ago
  25. 30f85c6 Added PJ_HAS_SOCKLEN_T test in configure script (some MacOS X have it, some dont) by Benny Prijono · 18 years ago
  26. d6388ac Fix compilation error when PJSIP_AUTH_HEADER_CACHING and PJSIP_AUTH_AUTO_SEND_NEXT is disabled, and set the default for both to disabled. Also fixed the error message in pjsua when invalid arguments are specified. by Benny Prijono · 18 years ago
  27. a3cbb1c Yet another documentation/doxygen update by Benny Prijono · 18 years ago
  28. 97b8717 Just updated doxygen documentation by Benny Prijono · 18 years ago
  29. c4c61d0 Finishing autoconf work, also fixed compilation error in publish.h by Benny Prijono · 18 years ago
  30. 3a5e1ab Support for PUBLISH (RFC 3903): by Benny Prijono · 18 years ago
  31. d3296a5 Fixed yet another bug for 64bit target: error in initializing caching pool because internal pool size is too small. Increased by 256 bytes. by Benny Prijono · 18 years ago
  32. f862897 Improved logging consistency and added more logging info in verbosity 6 by Benny Prijono · 18 years ago
  33. d6b90f5 Added pj_thread_is_registered by Benny Prijono · 18 years ago
  34. 0016d0c Increased width for sender column in log message, and added additional check in pj_thread_register() by Benny Prijono · 18 years ago
  35. 411b2be Removed copyright info from pj_timer_heap [hc], and explain more about ACE by Benny Prijono · 18 years ago
  36. fd27c66 Changed WinCE demo app to automatically answer incoming calls. by Benny Prijono · 18 years ago
  37. 7ca96da Added --auto-conf options in pjsua, also enable speex/3200, and set quality 5 to use large resampling filter by Benny Prijono · 18 years ago
  38. edba079 Echo suppressor tuning and testing on WincE, and also added config_site_sample.h by Benny Prijono · 18 years ago
  39. 8f9faae Fixed complilation error in config.h for ARM target. by Benny Prijono · 18 years ago
  40. d79f25c Fix compilation error in MacOS because of recent changes in config.h, also disable AEC by default in pjsua-lib, and added ec-tail option in pjsua by Benny Prijono · 18 years ago
  41. c4c8f24 Fix PJLIB on WinCE: by Benny Prijono · 18 years ago
  42. d345a65 Fixed bug in registring external thread: thread descriptor is not large enough because of recent enlargement on PJ_MAX_OBJ_NAME. by Benny Prijono · 18 years ago
  43. e85bc41 Another take at fixing 64bit problems. PJ_MAX_OBJ_NAME is increased to 32 chars (from 16), and check all those sprintf's especially the ones with "%p" format. by Benny Prijono · 18 years ago
  44. 53c3677 Removed pj/compat/sprintf.h from MSVC workspace, also changed "make size" to calculate .bss and .data as well. by Benny Prijono · 18 years ago
  45. a9b372a Added initial implementation of autoconf script (aconfigure) by Benny Prijono · 18 years ago
  46. 7db431e Added 64bit Linux target (x86_64), also fixed compilation warnings when compiling for this target by Benny Prijono · 18 years ago
  47. b699fe2 Improvement/bug fix in hash table lookup to allow user to specify the hash value, and modify transaction to take advantage of this feature by Benny Prijono · 18 years ago
  48. 92ac447 Changed all public header files to compile correctly when -ansi and -pedantic is used, also when g++ is used by Benny Prijono · 18 years ago
  49. 399188f Increased version number to 0.5.7! by Benny Prijono · 18 years ago
  50. 2bbd710 Fixed several bugs related to TCP: by Benny Prijono · 18 years ago
  51. ceb1260 Attempt to get some applications linked for RTEMS target, just to get the footprint calculation working by Benny Prijono · 18 years ago
  52. 9c025eb Fixed several bugs in WinNT IOCP: (1) accept() does not return correct addresses, (2) handle error condition when accept() returns -1 as the new socket by Benny Prijono · 18 years ago
  53. b4a17c9 Fixed bug in PJSUA API re: account selection and Contact header for accounts by Benny Prijono · 18 years ago
  54. c6e165f Added feature to report peak memory used in caching pool by Benny Prijono · 18 years ago
  55. 63ab356 Attempted to fix epoll for Linux by Benny Prijono · 18 years ago
  56. fe9c9b6 Fixed link errors in ioqueue epoll backend by Benny Prijono · 18 years ago
  57. 53e3ffd Improve the search for correct size in caching pool by Benny Prijono · 18 years ago
  58. b6eab2c Various performance improvements in PJSIP: (1) optimizing for common case to minimize stricmp() calls (header names, method, URI schemes), (2) added functionality in scanner to parse and unescape in-place, (3) etc.. by Benny Prijono · 18 years ago
  59. ac623b3 Change all pj_memset to pj_bzero(), where applicable by Benny Prijono · 18 years ago
  60. 1479b65 Fixed minor bug in pool_caching.c that prevent pool from being reused if the capacity has changed when the pool is released by Benny Prijono · 18 years ago
  61. 9df1d09 PJLIB will print the exception name when there is an unhandled exception by Benny Prijono · 18 years ago
  62. d281013 In VC6 workspace, set PJLIB to use IoCompletionPort instead of select() on Release build by Benny Prijono · 18 years ago
  63. e93e287 Major improvements in PJSIP to support TCP. The changes fall into these categories: (1) the TCP transport implementation itself (*.[hc]), (2) bug-fix in SIP transaction when using reliable transports, (3) support for TCP transport in PJSUA-LIB/PJSUA, and (4) changes in PJSIP-TEST to support TCP testing. by Benny Prijono · 18 years ago
  64. ae44a76 Added PJ_INT64() and PJ_UINT64() macro to construct 64bit constants in portable manner by Benny Prijono · 18 years ago
  65. 01de33b Fixed bug in ioqueue IOCP: accept() callback is called with new socket handle already reset to -1 by Benny Prijono · 18 years ago
  66. 0e25e7c Fixed bug in sockaddr_in: the sin_zero part of the sockaddr_in is not zeroed, causing SIP transport hash table to behave erraticly by Benny Prijono · 18 years ago
  67. 9f0a523 Added OSERR_ENOTCONN to compat/socket.h by Benny Prijono · 18 years ago
  68. 522cd29 Added Winsock error code to the error message by Benny Prijono · 18 years ago
  69. 67b0d62 Minor fix to doxygen documentation to ioqueue.h by Benny Prijono · 18 years ago
  70. 4021258 Fixed bug: ioqueue should return error when send()/sendto() is called while previous operation on the same op_key has not finished by Benny Prijono · 18 years ago
  71. 7eaa0fd Added the error code into error messages by Benny Prijono · 18 years ago
  72. 6e996dd Set log message level to error (=1) when message is too long by Benny Prijono · 18 years ago
  73. 312aff9 Modifications all over the place, but mainly only to update Doxygen documentation by Benny Prijono · 18 years ago
  74. 294c253 Fixed pjlib doxygen documentation by Benny Prijono · 18 years ago
  75. c78c3a3 Optimizations mostly in the conference bridge (gained more than 3x faster) by Benny Prijono · 18 years ago
  76. d841053 Cleanup misc compilation warnings with gcc by Benny Prijono · 18 years ago
  77. eebe9af -- REWRITE OF PJSUA API -- by Benny Prijono · 18 years ago
  78. ba06362 Changed codec priority to use integer with value between 0-255 instead of enum by Benny Prijono · 18 years ago
  79. ab668ed Added "#undef s_addr" in sock.h to fix build error on some Windows platforms by Benny Prijono · 18 years ago
  80. 0c59fea Added README-RTEMS and tweaked the makefiles by Benny Prijono · 18 years ago
  81. 385153d Cleanup warnings with MSVC 2003 by Benny Prijono · 18 years ago
  82. 1ae7945 Fixed MacOS X build by Benny Prijono · 18 years ago
  83. 4100342 Removed VSS traces from .dsp files by Benny Prijono · 18 years ago
  84. cdf3c11 Changed PJ_ASSERT_RETURN to evaluate the expression in the pj_assert, so that the message is displayed when the program stops by Benny Prijono · 18 years ago
  85. 0c38bad Fixed broken make on Linux etc because of missing os_timestamp_linux.c (was renamed to os_timestamp_posix.c) by Benny Prijono · 18 years ago
  86. ed8c0fc Changed default sound back-end on Win32 to own DirectSound by Benny Prijono · 18 years ago
  87. 8befd9f Another major modifications in PJMEDIA: by Benny Prijono · 18 years ago
  88. 8845e2a Removed rwmutex implementation to os_rwmutex.c by Benny Prijono · 18 years ago
  89. 42c5b9e Merge-in RTEMS port patch by Phil Torre <ptorre@zetron.com>, alpha release. by Benny Prijono · 18 years ago
  90. 0382cd8 Updated Makefiles, defined $TARGET as shortcut for ($MACHINE_NAME-$OS_NAME-$CC_NAME) by Benny Prijono · 18 years ago
  91. 1d8d608 Fixed bug in event subscription when it is challenged/authenticated by Benny Prijono · 18 years ago
  92. c67cbde Released version 0.5.5 by Benny Prijono · 18 years ago
  93. b8c2518 Improve codec handling in pjsua cmd-line options, and add URI to call by Benny Prijono · 18 years ago
  94. b9cd54e Increase the maximum number of formats in SDP media line (from 16 to 32) by Benny Prijono · 18 years ago
  95. dca7a33 Set version to 0.5.4.11 by Benny Prijono · 18 years ago
  96. c850d81 Set pjproject version to 0.5.4.10 by Benny Prijono · 18 years ago
  97. e2eea44 Added experimental code to handle QueryPerformanceCounter leaping bug on Win32 by Benny Prijono · 18 years ago
  98. 2a81634 Don't use rdtsc for high res timestamp on Linux as it's highly inaccurate (for now) by Benny Prijono · 18 years ago
  99. 4fda1eb Added timestamp frequency accuracy test in pjlib-test by Benny Prijono · 18 years ago
  100. 5accbd0 Fixed race condition bug in ioqueue unregistration for select and Win32 IOCP backend by Benny Prijono · 18 years ago