1. 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
  2. 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
  3. d424f5b Added initial implementation of low-level DNS packetization by Benny Prijono · 18 years ago
  4. 5ee1f2e Updated doxygen documentation for the website by Benny Prijono · 18 years ago
  5. dc752ca Fixed few bugs that seem to have been introduced by new dialog by Benny Prijono · 18 years ago
  6. 7d93d4e Added pool for allocating memory from the stack buffer by Benny Prijono · 18 years ago
  7. 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
  8. 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
  9. 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
  10. 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
  11. 1d97162 Fixed autoconf in various other systems (IA64, x86_64, BSD/FreeBSD) by Benny Prijono · 18 years ago
  12. c5b6dbf Fixed autoconf in mingw by Benny Prijono · 18 years ago
  13. b466e23 Fixed autoconf on MacOS X by Benny Prijono · 18 years ago
  14. 30f85c6 Added PJ_HAS_SOCKLEN_T test in configure script (some MacOS X have it, some dont) by Benny Prijono · 18 years ago
  15. 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
  16. a3cbb1c Yet another documentation/doxygen update by Benny Prijono · 18 years ago
  17. 97b8717 Just updated doxygen documentation by Benny Prijono · 18 years ago
  18. c4c61d0 Finishing autoconf work, also fixed compilation error in publish.h by Benny Prijono · 18 years ago
  19. d6b90f5 Added pj_thread_is_registered by Benny Prijono · 18 years ago
  20. 411b2be Removed copyright info from pj_timer_heap [hc], and explain more about ACE by Benny Prijono · 18 years ago
  21. fd27c66 Changed WinCE demo app to automatically answer incoming calls. by Benny Prijono · 18 years ago
  22. edba079 Echo suppressor tuning and testing on WincE, and also added config_site_sample.h by Benny Prijono · 18 years ago
  23. 8f9faae Fixed complilation error in config.h for ARM target. by Benny Prijono · 18 years ago
  24. 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
  25. c4c8f24 Fix PJLIB on WinCE: by Benny Prijono · 18 years ago
  26. 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
  27. 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
  28. a9b372a Added initial implementation of autoconf script (aconfigure) by Benny Prijono · 18 years ago
  29. 7db431e Added 64bit Linux target (x86_64), also fixed compilation warnings when compiling for this target by Benny Prijono · 18 years ago
  30. 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
  31. 2bbd710 Fixed several bugs related to TCP: by Benny Prijono · 18 years ago
  32. ceb1260 Attempt to get some applications linked for RTEMS target, just to get the footprint calculation working by Benny Prijono · 18 years ago
  33. c6e165f Added feature to report peak memory used in caching pool by Benny Prijono · 18 years ago
  34. 53e3ffd Improve the search for correct size in caching pool by Benny Prijono · 18 years ago
  35. ac623b3 Change all pj_memset to pj_bzero(), where applicable by Benny Prijono · 18 years ago
  36. 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
  37. ae44a76 Added PJ_INT64() and PJ_UINT64() macro to construct 64bit constants in portable manner by Benny Prijono · 18 years ago
  38. 9f0a523 Added OSERR_ENOTCONN to compat/socket.h by Benny Prijono · 18 years ago
  39. 67b0d62 Minor fix to doxygen documentation to ioqueue.h by Benny Prijono · 18 years ago
  40. 7eaa0fd Added the error code into error messages by Benny Prijono · 18 years ago
  41. 294c253 Fixed pjlib doxygen documentation by Benny Prijono · 18 years ago
  42. c78c3a3 Optimizations mostly in the conference bridge (gained more than 3x faster) by Benny Prijono · 18 years ago
  43. ba06362 Changed codec priority to use integer with value between 0-255 instead of enum by Benny Prijono · 18 years ago
  44. ab668ed Added "#undef s_addr" in sock.h to fix build error on some Windows platforms by Benny Prijono · 18 years ago
  45. 385153d Cleanup warnings with MSVC 2003 by Benny Prijono · 18 years ago
  46. 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
  47. 42c5b9e Merge-in RTEMS port patch by Phil Torre <ptorre@zetron.com>, alpha release. by Benny Prijono · 18 years ago
  48. 8508aa0 Added ability to have custom pool backend (needed for pool debugging facility) by Benny Prijono · 18 years ago
  49. c8c4d1e Added byte order swapping utilities by Benny Prijono · 19 years ago
  50. 03fefff Fixed build error on Linux by Benny Prijono · 19 years ago
  51. dcf2996 Set default option to exclude pj_stricmp_alnum() by Benny Prijono · 19 years ago
  52. 8d317a0 Fixed bug in ioqueue with IO Completion Port backend, where events may still be called after key is unregistered by Benny Prijono · 19 years ago
  53. 7a4cf15 Added pj_inet_addr2() by Benny Prijono · 19 years ago
  54. e67d99a Ported pjlib to PowerPC/MacOS by Benny Prijono · 19 years ago
  55. 1185299 Fixed or added misc flags to enable build selection via compile time macro by Benny Prijono · 19 years ago
  56. b8f63d6 Added <stdio.h> in this file by Benny Prijono · 19 years ago
  57. 4381efe Added misc flags and modify Makefiles to allow exclusion of PortAudio and specific codec during compilation by Benny Prijono · 19 years ago
  58. ed811d7 Fixed compilation and run warnings/errors with MSVC 2005 by Benny Prijono · 19 years ago
  59. 6aa5c2a Added PJ_EEOF in pjlib errno.h by Benny Prijono · 19 years ago
  60. 942452b Added pj_strdup2_with_null by Benny Prijono · 19 years ago
  61. e1a3de5 Fixed warning about _WIN32_WINNT redefined when compiled on Mingw by Benny Prijono · 19 years ago
  62. c8322f3 Added mutex protection for caching pool by Benny Prijono · 19 years ago
  63. 8c71561 Synched with documentation by Benny Prijono · 19 years ago
  64. b2343c7 Register pjlib-util errno, and update pjlib version by Benny Prijono · 19 years ago
  65. c5784c1 Added pj_ansi/native/unicode_snprintf, and added comment in errno.h by Benny Prijono · 19 years ago
  66. f80b1bf Fixing Makefiles for the new pjmedia-codec and pjsip-simple libraries by Benny Prijono · 19 years ago
  67. a5f4ff2 Added pj_list_size() by Benny Prijono · 19 years ago
  68. ace0093 Changed the unicode string API and ported to ARM/WinCE by Benny Prijono · 19 years ago
  69. 6139641 Changed the unicode functions by Benny Prijono · 19 years ago
  70. 5a9091c Added pj_strcat2 by Benny Prijono · 19 years ago
  71. 9c43b2b Changed PJ_ASSERT_RETURN implementation, to prevent expr from being evaluated twice by Benny Prijono · 19 years ago
  72. 3d32730 Fixed build errors when PJ_OS_HAS_CHECK_STACK or PJ_HAS_TCP is disabled by Benny Prijono · 19 years ago
  73. 37685d5 Fixed warning about isblank() redefinition on cygwin by Benny Prijono · 19 years ago
  74. ccf9562 Tested initial implementation: basic UAC, client registration, authentication, etc by Benny Prijono · 19 years ago
  75. d47401e Added PJ_ERR_MSG_SIZE in errno.h and updated VC7 project files by Benny Prijono · 19 years ago
  76. dcc2952 Added framework for attaching custom error message handler by Benny Prijono · 19 years ago
  77. 40f2f64 Finished implementation of UA layer (to be tested) by Benny Prijono · 19 years ago
  78. 37e8d33 Completed testing for WinCE port by Benny Prijono · 19 years ago
  79. 9cf138e Initial, quick and dirty WinCE port with EVC4 by Benny Prijono · 19 years ago
  80. ac9d142 Fixed minor warnings/mismatched comments mainly in pjlib++ by Benny Prijono · 19 years ago
  81. 8220f90 Fixed bugs and added tests to handle NULL and zero length strings by Benny Prijono · 19 years ago
  82. fa73e3e Added loop transport to test transaction by Benny Prijono · 19 years ago
  83. 0ca04b6 Basic module, transport, and sending messages by Benny Prijono · 19 years ago
  84. cec5f4a More optimizations for msg parser etc. by Benny Prijono · 19 years ago
  85. 33723ce Added more info for pj_dump_config by Benny Prijono · 19 years ago
  86. a7944bb Added pj_stricmp_alnum() to speedup the parser!!! by Benny Prijono · 19 years ago
  87. 4f2be31 Fixed MSVC compilation warnings in release build by Benny Prijono · 19 years ago
  88. 99683ae Added rdtsc option for win32 timestamp and added pj_elapsed_msec by Benny Prijono · 19 years ago
  89. d493480 Small optimization in pool (removed used_size) by Benny Prijono · 19 years ago
  90. d0d44f5 Changed syntax to support Windows SEH by Benny Prijono · 19 years ago
  91. 9033e31 Set svn:eol-style for all files by Benny Prijono · 19 years ago
  92. 5dcb38d Set svn:eol-style property by Benny Prijono · 19 years ago
  93. e9ed389 Added hex character conversion utility in ctype by Benny Prijono · 19 years ago
  94. 73f7133 Added PJ_IOQUEUE_ALWAYS_ASYNC flag by Benny Prijono · 19 years ago
  95. e0312a7 Pretty comments by Benny Prijono · 19 years ago
  96. e722461 Applying license to pjproject by Benny Prijono · 19 years ago
  97. ea6655e Updated pjlib docs by Benny Prijono · 19 years ago
  98. f010e69 First clean compile of pjsip by Benny Prijono · 19 years ago
  99. 85d3f45 Rework pjlib++ by Benny Prijono · 19 years ago
  100. 0e64113 Linux alpha test by Benny Prijono · 19 years ago